Commit 65b80858 authored by Felix Paul Kühne's avatar Felix Paul Kühne

Fixed a rare sent-msg-to-freed-object issue

parent 8c0ebf84
......@@ -323,9 +323,9 @@ static void Close( vlc_object_t *p_this )
if( vlc_object_alive(p_this->p_libvlc))
{
[p_sys->session stopRunning];
[p_sys->device release];
[p_sys->output release];
[p_sys->session release];
[p_sys->device release];
}
free( p_sys );
......
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