Skip to content
Snippets Groups Projects
Commit 96f4851a authored by DJ Delorie's avatar DJ Delorie
Browse files

merge from gcc

parent 1c7a49d2
No related branches found
No related tags found
No related merge requests found
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.
......
......@@ -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];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment