]> granicus.if.org Git - php/commitdiff
Fix Bug #64776 The XSLT extension is not thread safe.
authorMichael Wallner <mike@php.net>
Mon, 2 Dec 2013 14:01:24 +0000 (15:01 +0100)
committerMichael Wallner <mike@php.net>
Mon, 2 Dec 2013 14:01:24 +0000 (15:01 +0100)
NEWS
ext/xsl/php_xsl.c

diff --git a/NEWS b/NEWS
index 5229ff4c292f8289f581a7dfc16a5c7cef7e4fd6..e527eeef2219bf7041686edac4348f4c8b281552 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -2,4 +2,7 @@ PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 20??, PHP 5.7.0 
 
+- XSL:
+  . Fixed bug #64776 (The XSLT extension is not thread safe). (Mike)
+
 <<< NOTE: Insert NEWS from last stable release here prior to actual release! >>>
index 41e1b9fa236bba87b6f991fc94db29aea127a2c1..c3b901e320a8765ff0ef151c2951ff55e4e724b1 100644 (file)
@@ -57,8 +57,8 @@ zend_module_entry xsl_module_entry = {
        xsl_functions,
        PHP_MINIT(xsl),
        PHP_MSHUTDOWN(xsl),
-       PHP_RINIT(xsl),         /* Replace with NULL if there's nothing to do at request start */
-       PHP_RSHUTDOWN(xsl),     /* Replace with NULL if there's nothing to do at request end */
+       NULL,
+       NULL,
        PHP_MINFO(xsl),
 #if ZEND_MODULE_API_NO >= 20010901
        "0.1", /* Replace with version number for your extension */
@@ -170,6 +170,7 @@ PHP_MINIT_FUNCTION(xsl)
        xsltRegisterExtModuleFunction ((const xmlChar *) "function",
                                   (const xmlChar *) "http://php.net/xsl",
                                   xsl_ext_function_object_php);
+       xsltSetGenericErrorFunc(NULL, php_libxml_error_handler);
 
        REGISTER_LONG_CONSTANT("XSL_CLONE_AUTO",      0,     CONST_CS | CONST_PERSISTENT);
        REGISTER_LONG_CONSTANT("XSL_CLONE_NEVER",    -1,     CONST_CS | CONST_PERSISTENT);
@@ -273,7 +274,7 @@ PHP_MSHUTDOWN_FUNCTION(xsl)
                                   (const xmlChar *) "http://php.net/xsl");
        xsltUnregisterExtModuleFunction ((const xmlChar *) "function",
                                   (const xmlChar *) "http://php.net/xsl");
-
+       xsltSetGenericErrorFunc(NULL, NULL);
        xsltCleanupGlobals();
 
        UNREGISTER_INI_ENTRIES();
@@ -282,24 +283,6 @@ PHP_MSHUTDOWN_FUNCTION(xsl)
 }
 /* }}} */
 
-/* {{{ PHP_RINIT_FUNCTION
- */
-PHP_RINIT_FUNCTION(xsl)
-{
-       xsltSetGenericErrorFunc(NULL, php_libxml_error_handler);
-       return SUCCESS;
-}
-/* }}} */
-
-/* {{{ PHP_RSHUTDOWN_FUNCTION
- */
-PHP_RSHUTDOWN_FUNCTION(xsl)
-{
-       xsltSetGenericErrorFunc(NULL, NULL);
-       return SUCCESS;
-}
-/* }}} */
-
 /* {{{ PHP_MINFO_FUNCTION
  */
 PHP_MINFO_FUNCTION(xsl)