libiberty/mkstemps.c: Include <time.h> if <sys/time.h> not available.
[deliverable/binutils-gdb.git] / libiberty / cp-demint.c
index 2e8f8d2d0579d8032be40e511d3c05fa4bf8f2c0..1d1a77af748ba2485272db761fa4244e25b5e2e2 100644 (file)
@@ -206,10 +206,8 @@ cplus_demangle_v3_components (const char *mangled, int options, void **mem)
             malloc (di.num_subs * sizeof (struct demangle_component *)));
   if (di.comps == NULL || di.subs == NULL)
     {
-      if (di.comps != NULL)
-       free (di.comps);
-      if (di.subs != NULL)
-       free (di.subs);
+      free (di.comps);
+      free (di.subs);
       return NULL;
     }
 
This page took 0.02642 seconds and 4 git commands to generate.