xz: Avoid unneeded access of a volatile variable.

This commit is contained in:
Lasse Collin 2020-02-21 15:59:26 +02:00
parent 524c2f12c7
commit b0a2a77d10
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ signals_exit(void)
sigfillset(&sa.sa_mask);
sa.sa_flags = 0;
sigaction(sig, &sa, NULL);
raise(exit_signal);
raise(sig);
#endif
}