diff options
-rw-r--r-- | binutils/ChangeLog | 1 | ||||
-rw-r--r-- | binutils/ar.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog index ae56956a5d..99e5ed71fd 100644 --- a/binutils/ChangeLog +++ b/binutils/ChangeLog @@ -3,6 +3,7 @@ * strings.c (print_strings): Plug memory leak. * ar.c (move_members): Plug memory leak. (delete_members): Plug memory leak. + (write_archive): Plug memory leak. 2011-03-25 Pierre Muller <muller@ics.u-strasbg.fr> diff --git a/binutils/ar.c b/binutils/ar.c index 263795fb7e..206c7a9781 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 |