We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f14e5fc commit 75d8449Copy full SHA for 75d8449
NEWS
@@ -20,7 +20,7 @@ PHP NEWS
20
filter is provided). (Girgias)
21
22
- LibXML:
23
- . Fix not thread safe xmlSchemaParse calls. (SpencerMalone)
+ . Fix not thread safe schema/relaxng calls. (SpencerMalone, nielsdos)
24
25
- Opcache:
26
. Fixed bug GH-20081 (access to uninitialized vars in preload_load()).
ext/libxml/libxml.c
@@ -938,6 +938,9 @@ PHP_LIBXML_API void php_libxml_initialize(void)
938
xmlInitParser();
939
#ifdef LIBXML_SCHEMAS_ENABLED
940
xmlSchemaInitTypes();
941
+#endif
942
+#ifdef LIBXML_RELAXNG_ENABLED
943
+ xmlRelaxNGInitTypes();
944
#endif
945
ZEND_IGNORE_LEAKS_END();
946
0 commit comments