diff options
author | Alan Modra <amodra@gmail.com> | 2006-01-10 22:34:03 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2006-01-10 22:34:03 +0000 |
commit | 62d732f54031c330e112363204668ee69a0f4556 (patch) | |
tree | ddabc95241a15ce84062a2bd215d51cbd3e46079 /binutils/objcopy.c | |
parent | 15550d6bec38f2381fdf52210d2acfda840e0500 (diff) | |
download | gdb-62d732f54031c330e112363204668ee69a0f4556.zip gdb-62d732f54031c330e112363204668ee69a0f4556.tar.gz gdb-62d732f54031c330e112363204668ee69a0f4556.tar.bz2 |
* objcopy.c (copy_object): Fix thinko.
Diffstat (limited to 'binutils/objcopy.c')
-rw-r--r-- | binutils/objcopy.c | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/binutils/objcopy.c b/binutils/objcopy.c index 410498c..2ab3d06 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -1281,16 +1281,13 @@ copy_object (bfd *ibfd, bfd *obfd) } if (isympp) - { - free (isympp); - isympp = NULL; - } + free (isympp); if (osympp != isympp) - { - free (osympp); - osympp = NULL; - } + free (osympp); + + isympp = NULL; + osympp = NULL; /* BFD mandates that all output sections be created and sizes set before any output is done. Thus, we traverse all sections multiple times. */ |