Revert accidental checkin.
[deliverable/binutils-gdb.git] / bfd / pdp11.c
index faf7a689e88b81ebf3c7c22434307fb5fa8f4672..620d21810f31e7c78a802cdc51ae7fa85a7b586c 100644 (file)
@@ -1433,13 +1433,13 @@ asymbol *
 NAME (aout, make_empty_symbol) (bfd *abfd)
 {
   bfd_size_type amt = sizeof (aout_symbol_type);
-  aout_symbol_type *new = bfd_zalloc (abfd, amt);
+  aout_symbol_type *new_symbol_type = bfd_zalloc (abfd, amt);
 
-  if (!new)
+  if (!new_symbol_type)
     return NULL;
-  new->symbol.the_bfd = abfd;
+  new_symbol_type->symbol.the_bfd = abfd;
 
-  return &new->symbol;
+  return &new_symbol_type->symbol;
 }
 
 /* Translate a set of internal symbols into external symbols.  */
This page took 0.026394 seconds and 4 git commands to generate.