Commit cf560768 authored by Erwan Tulou's avatar Erwan Tulou

dbus: fix vout leak

This accounts for sporadic assert failed at vlc termination.
parent c76e0dc9
......@@ -111,7 +111,10 @@ MarshalCanSetFullscreen( intf_thread_t *p_intf, DBusMessageIter *container )
vlc_object_release( p_input );
if ( p_vout )
{
b_ret = TRUE;
vlc_object_release( p_vout );
}
}
dbus_message_iter_append_basic( container, DBUS_TYPE_BOOLEAN, &b_ret );
......
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