]> granicus.if.org Git - php/commitdiff
unset active_symbol_table on zend-shutdown.
authorThies C. Arntzen <thies@php.net>
Wed, 12 Jul 2000 12:00:17 +0000 (12:00 +0000)
committerThies C. Arntzen <thies@php.net>
Wed, 12 Jul 2000 12:00:17 +0000 (12:00 +0000)
Zend/zend.c

index 7bb3577293e5f1edc2f2f40ce41c6f0181f3c1b4..81c39ed85e8716475c59dc35ca3d9bfc369cf12e 100644 (file)
@@ -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);