2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-09-01 06:45:10 +00:00

Don't allow sudo_ev_loopcont() to override sudo_ev_loopexit()

This commit is contained in:
Todd C. Miller
2014-08-29 09:47:08 -06:00
parent e9370718f9
commit 2b849b2687
3 changed files with 27 additions and 21 deletions

View File

@@ -1138,9 +1138,9 @@ handle_sigchld(int backchannel, struct command_status *cstat)
sudo_debug_printf(SUDO_DEBUG_INFO, "command exited: %d",
WEXITSTATUS(status));
}
if (!WIFSTOPPED(status))
alive = false;
}
if (!WIFSTOPPED(status))
alive = false;
}
debug_return_bool(alive);
}