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 f772a1572f
commit b6314aa275

View file

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