mirror of
https://github.com/yasm/yasm
synced 2026-08-26 22:26:05 -04:00
nasm-pp.c: Plug a memory leak.
This commit is contained in:
parent
eb8b346157
commit
716c17112d
1 changed files with 1 additions and 0 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue