mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
preproc: Workaround a usage after free bug
In some circumstantes this free is incorrect resulting in usage after-free. Workaround it by not freeing memory here. https://bugzilla.nasm.us/show_bug.cgi?id=3392414 gorcunov@: - slightly tuneup the comment Signed-off-by: Adam Majer <amajer@suse.de> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com> Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
1a069438ef
commit
91e72409be
@ -5101,8 +5101,18 @@ static char *pp_getline(void)
|
||||
nasm_free(m->paramlen);
|
||||
l->finishes->in_progress = 0;
|
||||
}
|
||||
} else
|
||||
}
|
||||
|
||||
/*
|
||||
* FIXME It is incorrect to always free_mmacro here.
|
||||
* It leads to usage-after-free.
|
||||
*
|
||||
* https://bugzilla.nasm.us/show_bug.cgi?id=3392414
|
||||
*/
|
||||
#if 0
|
||||
else
|
||||
free_mmacro(m);
|
||||
#endif
|
||||
}
|
||||
istk->expansion = l->next;
|
||||
nasm_free(l);
|
||||
|
Loading…
x
Reference in New Issue
Block a user