diff options
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r-- | binutils/objcopy.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 72585ea..957fb85 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -3337,15 +3337,12 @@ copy_object (bfd *ibfd, bfd *obfd, const bfd_arch_info_type *input_arch) symcount = filter_symbols (ibfd, obfd, osympp, isympp, symcount); } - if (convert_debugging && dhandle != NULL) + if (dhandle != NULL) { bool res; res = write_debugging_info (obfd, dhandle, &symcount, &osympp); - free (dhandle); - dhandle = NULL; /* Paranoia... */ - if (! res) { status = 1; |