Fixed double-free in the config parser.

This commit is contained in:
Gunnar Beutner 2013-03-26 17:26:31 +00:00
parent 5d73b69342
commit 604b57da43
2 changed files with 281 additions and 261 deletions

File diff suppressed because it is too large Load Diff

View File

@ -162,7 +162,6 @@ identifier: T_IDENTIFIER
| T_STRING
{
$$ = $1;
free($1);
}
;