lib: fix CLI parser memleak

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2017-06-14 17:34:57 +02:00
parent f787d7a0b3
commit 4d85f868a5

View File

@ -191,7 +191,7 @@ start:
varname_token: '$' WORD varname_token: '$' WORD
{ {
$$ = XSTRDUP (MTYPE_LEX, $2); $$ = $2;
} }
| /* empty */ | /* empty */
{ {