nasm-pp.c: Plug a memory leak.

This commit is contained in:
Peter Johnson 2011-09-30 12:52:07 -07:00
parent eb8b346157
commit 716c17112d

View file

@ -5307,6 +5307,7 @@ make_tok_num(Token * tok, yasm_intnum *val)
{
tok->text = yasm_intnum_get_str(val);
tok->type = TOK_NUMBER;
yasm_intnum_destroy(val);
}
Preproc nasmpp = {