objcopy memory leaks
authorAlan Modra <amodra@gmail.com>
Sun, 12 Feb 2023 12:04:27 +0000 (22:34 +1030)
committerAlan Modra <amodra@gmail.com>
Mon, 13 Feb 2023 02:23:31 +0000 (12:53 +1030)
This fixes some objcopy memory leaks.  commit 450da4bd38ae used
xatexit to tidy most of the hash table memory, but of course that's
ineffective without a call to xexit.  The other major memory leak
happens if there is an error of some sort writing the output file, due
to not closing the input file and thus not freeing memory attached to
the bfd.

* objcopy.c (copy_file): Don't return when bfd_close of output
gives an error, always bfd_close input too.
(main): Call xexit.

binutils/objcopy.c

index eb2e54b9602d977ec79e119960f2d4bcf90d9ac8..b9d946a38e436320c63dcae669b45b4415e5b22e 100644 (file)
@@ -3934,14 +3934,12 @@ copy_file (const char *input_filename, const char *output_filename, int ofd,
        {
          status = 1;
          bfd_nonfatal_message (output_filename, NULL, NULL, NULL);
-         return;
        }
 
       if (!bfd_close (ibfd))
        {
          status = 1;
          bfd_nonfatal_message (input_filename, NULL, NULL, NULL);
-         return;
        }
     }
   else
@@ -6093,5 +6091,6 @@ main (int argc, char *argv[])
 
   END_PROGRESS (program_name);
 
+  xexit (status);
   return status;
 }