Commit 25f9e65f authored by Laurent Aimar's avatar Laurent Aimar

Fixed segafult when stopping BDA.

parent 63216006
......@@ -511,9 +511,6 @@ static void Close( vlc_object_t *p_this )
dvb_deleteBDAGraph( p_access );
vlc_mutex_destroy( &p_sys->lock );
vlc_cond_destroy( &p_sys->wait );
free( p_sys );
}
......
......@@ -79,8 +79,5 @@ long dvb_ReadBuffer( access_t* p_access, long* l_buffer_len, BYTE* p_buff );
****************************************************************************/
struct access_sys_t
{
/* These 2 must be left at the beginning */
vlc_mutex_t lock;
vlc_cond_t wait;
BDAGraph *p_bda_module;
};
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