mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-10-10 00:25:06 -04:00
Merge remote-tracking branch 'origin/nasm-2.12.xx'
Resolved Conflicts: .gitignore Makefile.in Mkfiles/msvc.mak Mkfiles/netware.mak Mkfiles/openwcom.mak Mkfiles/owlinux.mak preproc-nop.c preproc.c version Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
@@ -285,16 +285,16 @@ static void cv8_cleanup(void)
|
||||
build_type_table(type_sect);
|
||||
|
||||
if (cv8_state.source_file.name != NULL)
|
||||
free(cv8_state.source_file.name);
|
||||
nasm_free(cv8_state.source_file.name);
|
||||
|
||||
if (cv8_state.cwd != NULL)
|
||||
free(cv8_state.cwd);
|
||||
nasm_free(cv8_state.cwd);
|
||||
|
||||
saa_free(cv8_state.lines);
|
||||
|
||||
saa_rewind(cv8_state.symbols);
|
||||
while ((sym = saa_rstruct(cv8_state.symbols)))
|
||||
free(sym->name);
|
||||
nasm_free(sym->name);
|
||||
saa_free(cv8_state.symbols);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user