This commit is contained in:
Kovid Goyal 2022-12-07 06:48:19 +05:30
parent 9cb0e4d09d
commit 879b27a045
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -139,6 +139,8 @@ mask_variadic_signals(int sentinel, ...) {
} }
va_end(valist); va_end(valist);
sigprocmask(SIG_BLOCK, &signals, NULL); sigprocmask(SIG_BLOCK, &signals, NULL);
#else
(void)sentinel;
#endif #endif
} }