Merge branch 'jk/execv-dashed-external' into maint

Fix for NO_PTHREADS build.

* jk/execv-dashed-external:
  run-command: fix segfault when cleaning forked async process
maint
Junio C Hamano 2017-03-28 13:52:23 -07:00
commit fd3ab91ce6
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ static void cleanup_children(int sig, int in_signal)

kill(p->pid, sig);

if (p->process->wait_after_clean) {
if (p->process && p->process->wait_after_clean) {
p->next = children_to_wait_for;
children_to_wait_for = p;
} else {