Inline abbrev lookup
[deliverable/binutils-gdb.git] / binutils / elfcomm.c
index 5ec4690e13234b6eeed7ac45e2d32672cb9a21d0..558afa7d056c29304a2bf2c4061ffad5341a9841 100644 (file)
@@ -744,14 +744,10 @@ setup_nested_archive (struct archive_info *nested_arch,
 void
 release_archive (struct archive_info * arch)
 {
-  if (arch->file_name != NULL)
-    free (arch->file_name);
-  if (arch->index_array != NULL)
-    free (arch->index_array);
-  if (arch->sym_table != NULL)
-    free (arch->sym_table);
-  if (arch->longnames != NULL)
-    free (arch->longnames);
+  free (arch->file_name);
+  free (arch->index_array);
+  free (arch->sym_table);
+  free (arch->longnames);
 }
 
 /* Get the name of an archive member from the current archive header.
This page took 0.023763 seconds and 4 git commands to generate.