Commit 39b7de9b authored by Jean-Paul Saman's avatar Jean-Paul Saman

Backport rev [19192].

parent 4fa4489e
......@@ -45,7 +45,7 @@ void libvlc_exception_clear( libvlc_exception_t *p_exception )
inline int libvlc_exception_raised( libvlc_exception_t *p_exception )
{
return p_exception->b_raised;
return (NULL != p_exception) && p_exception->b_raised;
}
inline char* libvlc_exception_get_message( 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