Commit 93ad17a6 authored by Rémi Duraffort's avatar Rémi Duraffort

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

(cherry picked from commit c9e7c34b)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent 74af47de
......@@ -276,7 +276,7 @@ static void Close( vlc_object_t *p_this )
/* Free the array of titles */
for( int i = 0; i < p_sys->i_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 */
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