1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

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

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
}