Fix build break

This commit is contained in:
Arun Prakash Jana 2019-02-09 05:18:09 +05:30
parent 1253e462b8
commit 83615dc72b
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 2 additions and 1 deletions

View File

@ -4222,7 +4222,8 @@ int main(int argc, char *argv[])
cfg.restrict0b = 1;
/* Ignore/handle certain signals */
struct sigaction act = {0};
struct sigaction act;
memset(&act, 0, sizeof(act));
act.sa_sigaction = &sigint_handler;
act.sa_flags = SA_SIGINFO;
if (sigaction(SIGINT, &act, NULL) < 0) {