Commit 98391d59 authored by Hugo Beauzée-Luyssen's avatar Hugo Beauzée-Luyssen Committed by Jean-Baptiste Kempf

subsdec: Remove unused xml reader

parent 08f85dbc
......@@ -386,7 +386,6 @@ struct decoder_sys_t
vlc_iconv_t iconv_handle; /* handle to iconv instance */
bool b_autodetect_utf8;
xml_reader_t* p_reader;
};
......@@ -493,13 +492,6 @@ static int OpenDecoder( vlc_object_t *p_this )
p_sys->i_align = var_InheritInteger( p_dec, "subsdec-align" );
p_sys->p_reader = xml_ReaderCreate( p_dec, NULL );
if ( !p_sys->p_reader )
{
free( p_sys );
return VLC_EGENERIC;
}
return VLC_SUCCESS;
}
......
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