[MPlayer-cvslog] r34207 - trunk/mplayer.c
ib
subversion at mplayerhq.hu
Sun Oct 16 12:49:48 CEST 2011
Author: ib
Date: Sun Oct 16 12:49:48 2011
New Revision: 34207
Log:
Add comment.
Explain why there is no SIGSEGV signal handler for the Wine build.
Modified:
trunk/mplayer.c
Modified: trunk/mplayer.c
==============================================================================
--- trunk/mplayer.c Sun Oct 16 12:49:04 2011 (r34206)
+++ trunk/mplayer.c Sun Oct 16 12:49:48 2011 (r34207)
@@ -3002,7 +3002,7 @@ int main(int argc, char *argv[])
#ifdef CONFIG_SIGHANDLER
// fatal errors:
signal(SIGBUS, exit_sighandler); // bus error
-#ifndef __WINE__
+#ifndef __WINE__ // hack: the Wine executable will crash else
signal(SIGSEGV, exit_sighandler); // segfault
#endif
signal(SIGILL, exit_sighandler); // illegal instruction
More information about the MPlayer-cvslog
mailing list