From: Zeev Suraski Date: Tue, 7 Oct 2003 10:05:10 +0000 (+0000) Subject: Fix the fix :) X-Git-Tag: RELEASE_1_3b3~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d16d25b136977d1453c0eb42b50c9a6ec1fb39bc;p=php Fix the fix :) Not thoroughly tested, but appears to work fine --- diff --git a/Zend/zend_ini_parser.y b/Zend/zend_ini_parser.y index 7d8f6b6499..2e20d406b4 100644 --- a/Zend/zend_ini_parser.y +++ b/Zend/zend_ini_parser.y @@ -213,6 +213,7 @@ string_or_value: | CFG_TRUE { $$ = $1; } | CFG_FALSE { $$ = $1; } | '\n' { $$.value.str.val = strdup(""); $$.value.str.len=0; $$.type = IS_STRING; } + | /* empty */ { $$.value.str.val = strdup(""); $$.value.str.len=0; $$.type = IS_STRING; } ; expr: