Commit c9e7c34b authored by Rémi Duraffort's avatar Rémi Duraffort

dvdread: fix typo (does not have any impact).

parent 113cb994
...@@ -274,7 +274,7 @@ static void Close( vlc_object_t *p_this ) ...@@ -274,7 +274,7 @@ static void Close( vlc_object_t *p_this )
/* Free the array of titles */ /* Free the array of titles */
for( int i = 0; i < p_sys->i_titles; i++ ) for( int i = 0; i < p_sys->i_titles; i++ )
vlc_input_title_Delete( p_sys->titles[i] ); vlc_input_title_Delete( p_sys->titles[i] );
TAB_CLEAN( p_sys->i_title, p_sys->titles ); TAB_CLEAN( p_sys->i_titles, p_sys->titles );
/* Close libdvdread */ /* Close libdvdread */
if( p_sys->p_title ) DVDCloseFile( p_sys->p_title ); if( p_sys->p_title ) DVDCloseFile( p_sys->p_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