Add blank line after setlocale
setlocale() has to be separated from the signal handling.
This commit is contained in:
parent
fb1f1dea2e
commit
8e25af7dc3
1 changed files with 1 additions and 0 deletions
|
@ -843,6 +843,7 @@ main(int argc, char *argv[])
|
||||||
}
|
}
|
||||||
|
|
||||||
setlocale(LC_ALL, "");
|
setlocale(LC_ALL, "");
|
||||||
|
|
||||||
memset(&act, 0, sizeof(act));
|
memset(&act, 0, sizeof(act));
|
||||||
act.sa_handler = terminate;
|
act.sa_handler = terminate;
|
||||||
sigaction(SIGINT, &act, NULL);
|
sigaction(SIGINT, &act, NULL);
|
||||||
|
|
Loading…
Reference in a new issue