Commit f49712d8 by Ben Elliston Committed by Ben Elliston

* pexecute.c (pwait): Syntax fix for previous change.

From-SVN: r111326
parent 8f629dc5
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> 2006-02-17 Uttam Pawar <uttamp@us.ibm.com>
* pexecute.c (pwait): Free vector pointer. * pexecute.c (pwait): Free vector pointer.
......
...@@ -102,7 +102,7 @@ pwait (int pid, int *status, int flags ATTRIBUTE_UNUSED) ...@@ -102,7 +102,7 @@ pwait (int pid, int *status, int flags ATTRIBUTE_UNUSED)
vector = XNEWVEC (int, idx); vector = XNEWVEC (int, idx);
if (!pex_get_status (pex, idx, vector)) if (!pex_get_status (pex, idx, vector))
{ {
free (vector) free (vector);
return -1; return -1;
} }
*status = vector[pid]; *status = vector[pid];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment