From: Dmitry Stogov Date: Thu, 9 Jun 2005 08:54:24 +0000 (+0000) Subject: Fixed bug (Crash on Windows and ZTS) that was introduced with fix for bug #26456 X-Git-Tag: php-5.0.5RC1~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=201049308666180c40fcd05afe9d1d40e4538b40;p=php Fixed bug (Crash on Windows and ZTS) that was introduced with fix for bug #26456 --- diff --git a/Zend/zend_language_scanner.l b/Zend/zend_language_scanner.l index 765bdc68d1..1f07062e7c 100644 --- a/Zend/zend_language_scanner.l +++ b/Zend/zend_language_scanner.l @@ -125,7 +125,8 @@ void startup_scanner(TSRMLS_D) { CG(heredoc) = NULL; CG(heredoc_len)=0; - RESET_DOC_COMMENT(); + CG(doc_comment) = NULL; + CG(doc_comment_len) = 0; SCNG(yy_start_stack_ptr) = 0; SCNG(yy_start_stack_depth) = 0; SCNG(current_buffer) = NULL;