1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

fix uninitialized fields

This commit is contained in:
Steffen Vogel 2019-04-07 11:25:39 +02:00
parent 297822fba3
commit fbb4a8e62d

View file

@ -105,6 +105,7 @@ int signals_init(void (*cb)(int signal, siginfo_t *sinfo, void *ctx))
main_thread = pthread_self();
sigemptyset(&sa_quit.sa_mask);
sigemptyset(&sa_chld.sa_mask);
ret = sigaction(SIGINT, &sa_quit, NULL);
if (ret)