Fix memory leak in the config parser

refs #7566
This commit is contained in:
Gunnar Beutner 2014-11-05 09:29:15 +01:00
parent 4eb37563b4
commit ad14ff6d6b

View File

@ -530,6 +530,7 @@ indexer: identifier
{ {
$$ = $2; $$ = $2;
$$->Insert(0, MakeLiteral($1)); $$->Insert(0, MakeLiteral($1));
free($1);
} }
; ;