summaryrefslogtreecommitdiff
path: root/Zend/zend_ini.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-12-16 09:12:09 +0100
committerAnatol Belski <ab@php.net>2014-12-16 09:12:09 +0100
commiteb629b70da620fcdac6aca472c1450824ded15de (patch)
tree5955554e74fff9d4ed08d418907cba650b225283 /Zend/zend_ini.h
parent50a93357fb748ee1976fb7993abccae9c8105157 (diff)
downloadphp-git-eb629b70da620fcdac6aca472c1450824ded15de.tar.gz
free the right globals
That's the same as in the previous commit. In the TS mode the tsrm cache pointer might be unavailable or point to a wrong thread, so the exact globals passed should be freed.
Diffstat (limited to 'Zend/zend_ini.h')
-rw-r--r--Zend/zend_ini.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_ini.h b/Zend/zend_ini.h
index c605301661..81a2ee3ef3 100644
--- a/Zend/zend_ini.h
+++ b/Zend/zend_ini.h
@@ -62,7 +62,7 @@ struct _zend_ini_entry {
BEGIN_EXTERN_C()
ZEND_API int zend_ini_startup(void);
-ZEND_API int zend_ini_shutdown(void);
+ZEND_API int zend_ini_shutdown(HashTable *ini_directives);
ZEND_API int zend_ini_global_shutdown(void);
ZEND_API int zend_ini_deactivate(void);