Commit 85365c63 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

DVDread: Fix crash with Brave DVD

Arccos protection system!
Ref #6649
parent 44a5b18d
......@@ -726,7 +726,11 @@ static int DvdReadSetArea( demux_t *p_demux, int i_title, int i_chapter,
{
int i_start_cell, i_end_cell;
if( p_sys->p_title != NULL ) DVDCloseFile( p_sys->p_title );
if( p_sys->p_title != NULL )
{
DVDCloseFile( p_sys->p_title );
p_sys->p_title = NULL;
}
if( p_vts != NULL ) ifoClose( p_vts );
p_sys->i_title = i_title;
......
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