Skip to content

Commit d16d25b

Browse files
committed
Fix the fix :)
Not thoroughly tested, but appears to work fine
1 parent f57043e commit d16d25b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Zend/zend_ini_parser.y

+1
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@ string_or_value:
213213
| CFG_TRUE { $$ = $1; }
214214
| CFG_FALSE { $$ = $1; }
215215
| '\n' { $$.value.str.val = strdup(""); $$.value.str.len=0; $$.type = IS_STRING; }
216+
| /* empty */ { $$.value.str.val = strdup(""); $$.value.str.len=0; $$.type = IS_STRING; }
216217
;
217218

218219
expr:

0 commit comments

Comments
 (0)