diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2002-11-10 19:28:51 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2002-11-10 19:28:51 +0000 |
commit | bb14455e627cf397df48e1fa855657d52efc0940 (patch) | |
tree | 2456df2cc97779e6ac353988957efe624436a47a | |
parent | f13fd7a713513499695575526969c469058ecfb6 (diff) | |
download | php-git-bb14455e627cf397df48e1fa855657d52efc0940.tar.gz |
Added missing zend_lineno initilization.
-rw-r--r-- | main/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/main.c b/main/main.c index e0b4ddd0b0..060604d0da 100644 --- a/main/main.c +++ b/main/main.c @@ -1056,6 +1056,8 @@ int php_module_startup(sapi_module_struct *sf, zend_module_entry *additional_mod PG(connection_status) = PHP_CONNECTION_NORMAL; PG(during_request_startup) = 0; + CG(zend_lineno) = 0; + #if HAVE_SETLOCALE setlocale(LC_CTYPE, ""); #endif |