diff options
author | Anatol Belski <ab@php.net> | 2014-12-15 10:52:12 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-12-15 10:52:12 +0100 |
commit | dba27372ec59af3f0ecc02b264b9c3a620b1a5bf (patch) | |
tree | 236cf923a18e7378377f25734a8d637f17913094 | |
parent | 61f90fbe0b5c20420661642085a13e596c8883e9 (diff) | |
download | php-git-dba27372ec59af3f0ecc02b264b9c3a620b1a5bf.tar.gz |
in ext/soap globals are initialized also on minit
-rw-r--r-- | ext/soap/soap.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); |