# HG changeset patch # User ib # Date 1318762188 0 # Node ID 3959e81b0bcb64f76658ac3e992b17e19107236b # Parent b8175cad9b8a385a441b0a9178532659a8b79c16 Add comment. Explain why there is no SIGSEGV signal handler for the Wine build. diff -r b8175cad9b8a -r 3959e81b0bcb mplayer.c --- a/mplayer.c Sun Oct 16 10:49:04 2011 +0000 +++ b/mplayer.c Sun Oct 16 10:49:48 2011 +0000 @@ -3002,7 +3002,7 @@ #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