remove another invalid skip of locking in ungetwc
[oweals/musl.git] / src / signal / siglongjmp.c
index b644cebb98f60b4526919a9637ed5803426e67a4..bc317acce93176a939f6de518cbe67d81284bdfd 100644 (file)
@@ -5,6 +5,5 @@
 
 _Noreturn void siglongjmp(sigjmp_buf buf, int ret)
 {
-       if (buf->__fl) __restore_sigs(buf->__ss);
        longjmp(buf, ret);
 }