From: Anatol Belski Date: Mon, 15 Dec 2014 09:52:12 +0000 (+0100) Subject: in ext/soap globals are initialized also on minit X-Git-Tag: POST_NATIVE_TLS_MERGE^2~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dba27372ec59af3f0ecc02b264b9c3a620b1a5bf;p=php in ext/soap globals are initialized also on minit --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index e2a9a84a15..1dac5b7143 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -645,6 +645,9 @@ PHP_MINIT_FUNCTION(soap) { zend_class_entry ce; +#if defined(COMPILE_DL_SOAP) && defined(ZTS) + ZEND_TSRMLS_CACHE_UPDATE; +#endif /* TODO: add ini entry for always use soap errors */ php_soap_prepare_globals(); ZEND_INIT_MODULE_GLOBALS(soap, php_soap_init_globals, NULL);