diff options
author | Nick Clifton <nickc@redhat.com> | 2011-03-25 17:18:54 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2011-03-25 17:18:54 +0000 |
commit | 8e4850a9e39ff6541d7e705710540191f7e23dc8 (patch) | |
tree | 7cd5121f21a74e2796bde340b7bfd0b9a008ef3f /binutils/ar.c | |
parent | a1bc0327a3df4e35e5b923913536c31ca85f16dc (diff) | |
download | gdb-8e4850a9e39ff6541d7e705710540191f7e23dc8.zip gdb-8e4850a9e39ff6541d7e705710540191f7e23dc8.tar.gz gdb-8e4850a9e39ff6541d7e705710540191f7e23dc8.tar.bz2 |
* ar.c (write_archive): Plug memory leak.
Diffstat (limited to 'binutils/ar.c')
-rw-r--r-- | binutils/ar.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/binutils/ar.c b/binutils/ar.c index 263795f..206c7a9 100644 --- a/binutils/ar.c +++ b/binutils/ar.c @@ -1069,6 +1069,7 @@ write_archive (bfd *iarch) if (smart_rename (new_name, old_name, 0) != 0) xexit (1); + free (old_name); } /* Return a pointer to the pointer to the entry which should be rplacd'd |