outmacho.c: fix section/relocation alignment issue

This commit is contained in:
Keith Kanios 2009-07-07 23:09:22 -05:00
parent 52a3fbd74d
commit 745560e65a

View File

@ -1020,9 +1020,13 @@ static void macho_write_section (void)
of the rest of the address. */
if (!r->ext) {
/* generate final address by section address and offset */
for (s2 = sects, fi = 1;
s2 != NULL && fi < r->snum; s2 = s2->next, fi++)
l += s2->size;
for (s2 = sects, fi = 1;
s2 != NULL; s2 = s2->next, fi++){
if(fi == r->snum){
l += s2->addr;
break;
}
}
}
/* write new offset back */