X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bin%2Foverride.c;h=b5de22d0f558b4c941937048c63ea11c75ffc0a9;hb=79db0f282017f4cb5e75b1d45688e9c1cf3a3391;hp=5996e43c499b44067a2b67b8d4cdbf1840062dc1;hpb=49a14c1606cf8dd3312d7f1a9c14182bfe196c74;p=vlc diff --git a/bin/override.c b/bin/override.c index 5996e43c49..b5de22d0f5 100644 --- a/bin/override.c +++ b/bin/override.c @@ -33,6 +33,7 @@ void vlc_enable_override (void); #include #include #include +#include #include #include #ifdef HAVE_EXECINFO_H @@ -216,7 +217,8 @@ void (*signal (int signum, void (*handler) (int))) (int) if (!blocked_signal (signum)) goto error; /* For our blocked signals, the handler won't matter much... */ - LOG("Warning", "%d, %p", signum, handler); + if (handler == SIG_DFL) + LOG("Warning", "%d, SIG_DFL", signum, handler); } return CALL(signal, signum, handler); error: @@ -231,7 +233,8 @@ int sigaction (int signum, const struct sigaction *act, struct sigaction *old) if ((act->sa_flags & SA_SIGINFO) || (act->sa_handler != SIG_IGN && act->sa_handler != SIG_DFL)) goto error; - LOG("Warning", "%d, %p, %p", signum, act, old); + if (act->sa_handler == SIG_DFL) + LOG("Warning", "%d, %p, SIG_DFL", signum, act); } return CALL(sigaction, signum, act, old); error: @@ -258,6 +261,20 @@ char *setlocale (int cat, const char *locale) } +/* strerror() is not thread-safe in theory (POSIX), nor in practice (glibc). + * This caused quite nasty crashes in the history of VLC/Linux. */ +char *strerror (int val) +{ + if (override) + { + static const char msg[] = + "Error message unavailable (use strerror_r instead of strerror)!"; + LOG("Blocked", "%d", val); + return (char *)msg; + } + return CALL(strerror, val); +} + /*** Xlib ****/ #ifdef HAVE_X11_XLIB_H # include