Commit dfa5d0ba authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

libvlc: Abort in case of unhandled exception.

parent fb771cf9
...@@ -71,6 +71,7 @@ static void libvlc_exception_not_handled( const char *psz ) ...@@ -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", fprintf( stderr, "*** LibVLC Exception not handled: %s\nSet a breakpoint in '%s' to debug.\n",
psz, __func__ ); psz, __func__ );
abort();
} }
void libvlc_exception_raise( libvlc_exception_t *p_exception, void libvlc_exception_raise( libvlc_exception_t *p_exception,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment