Commit 959e4584 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

Test suite start to prove its usefulness. (oops).

It should be improved.
parent 643f36a9
......@@ -157,6 +157,12 @@ void
libvlc_event_async_fini(libvlc_event_manager_t * p_em)
{
if(!is_queue_initialized(p_em)) return;
if(current_thread_is_asynch_thread(p_em))
{
fprintf(stderr, "*** Error: releasing the last reference of the observed object from its callback thread is not (yet!) supported\n");
abort();
}
vlc_thread_t thread = queue(p_em)->thread;
if(thread)
......
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