aboutsummaryrefslogtreecommitdiffstats
path: root/parser.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2014-01-26 15:02:25 +0100
committerDaniel Veillard <veillard@redhat.com>2014-01-26 15:02:25 +0100
commit054c716ea1bf001544127a4ab4f4346d1b9947e7 (patch)
tree0328a0e8ae14ba5442b9ff3731ab580b4a5cd828 /parser.c
parent03c6723043775122313f107695066e5744189a08 (diff)
downloadandroid_external_libxml2-054c716ea1bf001544127a4ab4f4346d1b9947e7.tar.gz
android_external_libxml2-054c716ea1bf001544127a4ab4f4346d1b9947e7.tar.bz2
android_external_libxml2-054c716ea1bf001544127a4ab4f4346d1b9947e7.zip
Missing initialization for the catalog module
Diffstat (limited to 'parser.c')
-rw-r--r--parser.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/parser.c b/parser.c
index 87d4794e..d61c2161 100644
--- a/parser.c
+++ b/parser.c
@@ -14724,6 +14724,9 @@ xmlInitParser(void) {
#ifdef LIBXML_XPATH_ENABLED
xmlXPathInit();
#endif
+#ifdef LIBXML_CATALOG_ENABLED
+ xmlInitializeCatalog();
+#endif
xmlParserInitialized = 1;
#ifdef LIBXML_THREAD_ENABLED
}