diff options
| author | Marcus Boerger <helly@php.net> | 2003-12-23 10:45:10 +0000 |
|---|---|---|
| committer | Marcus Boerger <helly@php.net> | 2003-12-23 10:45:10 +0000 |
| commit | c6cb00fe592c54e328365b2aed865beecf5d0e0e (patch) | |
| tree | 74ca48ee1a2983b2878f4f23aac397bd265c38d7 /Zend/zend.c | |
| parent | cf45beedb5c18512151ee33fe7b552e34ca2282d (diff) | |
| download | php-git-c6cb00fe592c54e328365b2aed865beecf5d0e0e.tar.gz | |
Fixed bug #26697 (calling class_exists on a nonexistent class in __autoload
results in segfault).
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index cfaa465590..a4fabb393b 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -472,6 +472,7 @@ static void executor_globals_ctor(zend_executor_globals *executor_globals TSRMLS EG(user_error_handler) = NULL; EG(user_exception_handler) = NULL; EG(in_execution) = 0; + EG(in_autoload) = 0; EG(current_execute_data) = NULL; } |
