mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
outmacho.c: fix section/relocation alignment issue
This commit is contained in:
parent
52a3fbd74d
commit
745560e65a
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user