2006-01-11  Alan Modra  <amodra@bigpond.net.au>
 
+       * objcopy.c (copy_object): Fix thinko.
+
        * objcopy.c (copy_object): Set isympp and osympp to NULL after free.
 
 2006-01-09  Mike Frysinger  <vapier@gentoo.org>:
 
     }
 
   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.  */