Skip to content
Snippets Groups Projects
Commit 25234cd2 authored by Danny Auble's avatar Danny Auble
Browse files

Fix memory leak in step when destroying exec_wait_info

parent 8d2f9c04
No related branches found
No related tags found
No related merge requests found
......@@ -1172,6 +1172,7 @@ static void exec_wait_info_destroy (struct exec_wait_info *e)
close (e->childfd);
e->id = -1;
e->pid = -1;
xfree(e);
}
static pid_t exec_wait_get_pid (struct exec_wait_info *e)
......
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