Fix memory leak in ar if it encounters an invalid path whilst extracting files.
authorNick Clifton <nickc@redhat.com>
Tue, 4 Aug 2015 13:50:40 +0000 (14:50 +0100)
committerNick Clifton <nickc@redhat.com>
Tue, 4 Aug 2015 13:50:40 +0000 (14:50 +0100)
* ar.c (extract_file): Free cbuf if the path is invalid.

binutils/ar.c

index 94c79e2..2765dcc 100644 (file)
@@ -1041,6 +1041,7 @@ extract_file (bfd *abfd)
     {
       non_fatal (_("illegal pathname found in archive member: %s"),
                 bfd_get_filename (abfd));
+      free (cbuf);
       return;
     }