summaryrefslogtreecommitdiff
path: root/Zend
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2000-07-12 12:00:17 +0000
committerThies C. Arntzen <thies@php.net>2000-07-12 12:00:17 +0000
commit372f71eb1a5102bc65d0f8c28f59c18703992995 (patch)
tree8169e9c2ff29bb5f4e6b80d31a066a41ece7f18e /Zend
parent88113794fd4c7e222a53d7cc8df13ad6c7f20c8f (diff)
downloadphp-git-372f71eb1a5102bc65d0f8c28f59c18703992995.tar.gz
unset active_symbol_table on zend-shutdown.
Diffstat (limited to 'Zend')
-rw-r--r--Zend/zend.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c
index 7bb3577293..81c39ed85e 100644
--- a/Zend/zend.c
+++ b/Zend/zend.c
@@ -505,7 +505,9 @@ void zend_deactivate_modules()
void zend_deactivate(CLS_D ELS_DC)
{
- EG(opline_ptr) = NULL; /* we're no longer executing anything */
+ /* we're no longer executing anything */
+ EG(opline_ptr) = NULL;
+ EG(active_symbol_table) = NULL;
shutdown_scanner(CLS_C);
shutdown_executor(ELS_C);