2006-02-02 Eric Christopher <echristo@apple.com>

Wade Tregaskis  <wtregaskis@apple.com>

	* output/outmacho.c (macho_cleanup): Depend on symbols
	existing.
This commit is contained in:
Eric Christopher 2006-02-02 21:50:47 +00:00
parent 5eb2d2b094
commit a5f0000db0

View File

@ -1256,11 +1256,13 @@ static void macho_cleanup(int debuginfo)
saa_free(strs);
raa_free(extsyms);
while (syms->next) {
sym = syms;
syms = syms->next;
if (syms) {
while (syms->next) {
sym = syms;
syms = syms->next;
nasm_free (sym);
nasm_free (sym);
}
}
}