Catch failures when installing signal handlers
Stop ignoring the return codes from sigaction() and signal(). Unlikely to happen in practice, but if it ever did it could lead to really hard to debug problems. So, take clang-tidy's advice and check for errors here. Signed-off-by: David Gibson <david@gibson.dropbear.id.au> Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
This commit is contained in:
parent
8a19f36864
commit
8534be076c
1 changed files with 4 additions and 2 deletions
6
passt.c
6
passt.c
|
@ -201,8 +201,10 @@ int main(int argc, char **argv)
|
|||
name = basename(argv0);
|
||||
if (strstr(name, "pasta")) {
|
||||
sa.sa_handler = pasta_child_handler;
|
||||
sigaction(SIGCHLD, &sa, NULL);
|
||||
signal(SIGPIPE, SIG_IGN);
|
||||
if (sigaction(SIGCHLD, &sa, NULL) || signal(SIGPIPE, SIG_IGN)) {
|
||||
err("Couldn't install signal handlers");
|
||||
exit(EXIT_FAILURE);
|
||||
}
|
||||
|
||||
c.mode = MODE_PASTA;
|
||||
log_name = "pasta";
|
||||
|
|
Loading…
Reference in a new issue