From: Pierre d'Herbemont Date: Wed, 24 Jun 2009 05:03:57 +0000 (-0700) Subject: libvlc: Abort in case of unhandled exception. X-Git-Tag: 1.1.0-ff~5280 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=dfa5d0bac97b05b83ba493ecf5516c1af1fc0e72;p=vlc libvlc: Abort in case of unhandled exception. --- diff --git a/src/control/core.c b/src/control/core.c index ececd0ea0c..4a258d26b6 100644 --- a/src/control/core.c +++ b/src/control/core.c @@ -71,6 +71,7 @@ static void libvlc_exception_not_handled( const char *psz ) { fprintf( stderr, "*** LibVLC Exception not handled: %s\nSet a breakpoint in '%s' to debug.\n", psz, __func__ ); + abort(); } void libvlc_exception_raise( libvlc_exception_t *p_exception,