diff options
author | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-08-10 21:38:36 +0000 |
---|---|---|
committer | Jan Kratochvil <jan.kratochvil@redhat.com> | 2009-08-10 21:38:36 +0000 |
commit | e39e47bd251f5e5958750244d01eeb55b5e8bb1e (patch) | |
tree | a4e67e0d9c225a7fc707a0ce0477eed5e271b7d4 /bfd/coff-stgo32.c | |
parent | 0561d57c86bcec2cb9203d682a636928a6ea1352 (diff) | |
download | gdb-e39e47bd251f5e5958750244d01eeb55b5e8bb1e.zip gdb-e39e47bd251f5e5958750244d01eeb55b5e8bb1e.tar.gz gdb-e39e47bd251f5e5958750244d01eeb55b5e8bb1e.tar.bz2 |
bfd/
Fix go32 stub preservation by objcopy.
* coff-stgo32.c (adjust_filehdr_in_post): Use bfd_malloc.
(go32_stubbed_coff_bfd_copy_private_bfd_data): Optionally allocate OBFD
go32stub.
ld/testsuite/
Test go32 stub preservation by objcopy.
* ld-i386/i386.exp (go32 stub, go32 stub patch the source)
(go32 stub objcopy, go32 stub comparison after objcopy): New.
Diffstat (limited to 'bfd/coff-stgo32.c')
-rw-r--r-- | bfd/coff-stgo32.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/bfd/coff-stgo32.c b/bfd/coff-stgo32.c index b8928be..51ea732e 100644 --- a/bfd/coff-stgo32.c +++ b/bfd/coff-stgo32.c @@ -141,8 +141,9 @@ adjust_filehdr_in_post (abfd, src, dst) ADJUST_VAL (filehdr_dst->f_symptr, STUBSIZE); - /* Save now the stub to be used later. */ - bfd_coff_go32stub (abfd) = (PTR) bfd_alloc (abfd, (bfd_size_type) STUBSIZE); + /* Save now the stub to be used later. FIXME: Memory leak as the caller + coff_object_p does bfd_release afterwards. */ + bfd_coff_go32stub (abfd) = bfd_malloc ((bfd_size_type) STUBSIZE); /* Since this function returns no status, I do not set here any bfd_error_... @@ -403,13 +404,18 @@ go32_stubbed_coff_bfd_copy_private_bfd_data (ibfd, obfd) if (ibfd->xvec != obfd->xvec) return TRUE; - /* Check if both have a valid stub. */ - if (bfd_coff_go32stub (ibfd) == NULL - || bfd_coff_go32stub (obfd) == NULL) + /* Check if we have a source stub. */ + if (bfd_coff_go32stub (ibfd) == NULL) return TRUE; + /* As adjust_filehdr_out_pre may get called only after this function, + optionally allocate the output stub. */ + if (bfd_coff_go32stub (obfd) == NULL) + bfd_coff_go32stub (obfd) = bfd_alloc (obfd, (bfd_size_type) STUBSIZE); + /* Now copy the stub. */ - memcpy (bfd_coff_go32stub (obfd), bfd_coff_go32stub (ibfd), STUBSIZE); + if (bfd_coff_go32stub (obfd) != NULL) + memcpy (bfd_coff_go32stub (obfd), bfd_coff_go32stub (ibfd), STUBSIZE); return TRUE; } |