merge from gcc
authorDJ Delorie <dj@redhat.com>
Tue, 21 Feb 2006 02:38:06 +0000 (02:38 +0000)
committerDJ Delorie <dj@redhat.com>
Tue, 21 Feb 2006 02:38:06 +0000 (02:38 +0000)
libiberty/ChangeLog
libiberty/pexecute.c

index 46ab074..acdfad0 100644 (file)
@@ -1,3 +1,7 @@
+2006-02-21  Ben Elliston  <bje@au.ibm.com>
+
+       * pexecute.c (pwait): Syntax fix for previous change.
+
 2006-02-17  Uttam Pawar  <uttamp@us.ibm.com>
 
        * pexecute.c (pwait): Free vector pointer.
index fa65fe8..97f1574 100644 (file)
@@ -102,7 +102,7 @@ pwait (int pid, int *status, int flags ATTRIBUTE_UNUSED)
       vector = XNEWVEC (int, idx);
       if (!pex_get_status (pex, idx, vector))
        {
-         free (vector)
+         free (vector);
          return -1;
        }
       *status = vector[pid];