diff options
| author | Dmitry Stogov <dmitry@php.net> | 2004-03-24 14:30:59 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2004-03-24 14:30:59 +0000 |
| commit | 55cf45abf50b39f5f8be09a5f3c02258fc00bc58 (patch) | |
| tree | a0dda717d348ea44e55a67c16fecacd2da50d823 /Zend/zend.c | |
| parent | 9ff10d086a699557e0b2c9ca99dbcfd0f8e330dc (diff) | |
| download | php-git-55cf45abf50b39f5f8be09a5f3c02258fc00bc58.tar.gz | |
New autoload protection schema was implemented (Using HashTable instead of boolean flag)
Diffstat (limited to 'Zend/zend.c')
| -rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index b21a2cff3a..20f109c1a5 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -467,7 +467,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(in_autoload) = NULL; EG(current_execute_data) = NULL; } |
