From dfa5d0bac97b05b83ba493ecf5516c1af1fc0e72 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Tue, 23 Jun 2009 22:03:57 -0700 Subject: [PATCH] libvlc: Abort in case of unhandled exception. --- src/control/core.c | 1 + 1 file changed, 1 insertion(+) 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, -- 2.39.2