diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-07-05 14:13:46 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-07-05 14:13:46 +0000 |
commit | 43c84919bedaf8663e82e037f395edf68dd5043a (patch) | |
tree | 3cc910b40032e7be0549d4f6032770806c1b7349 /main | |
parent | 319cbe1c5ab9669dddb39099169bf47745c30957 (diff) | |
download | php-git-43c84919bedaf8663e82e037f395edf68dd5043a.tar.gz |
Fixed crash in ext\standard\tests\general_functions\bug32647.php on Windows
Diffstat (limited to 'main')
-rw-r--r-- | main/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index cb20792f00..ef336e03c0 100644 --- a/main/main.c +++ b/main/main.c @@ -1195,6 +1195,7 @@ void php_request_shutdown(void *dummy) * inside zend_executor callback functions. */ EG(opline_ptr) = NULL; + EG(active_op_array) = NULL; /* 1. Call all possible __destruct() functions */ zend_try { |