Commit 882e06e0 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix NULL pointer deref (fix #4599)

parent 0a11f3b2
...@@ -286,7 +286,7 @@ static int Demux( demux_t *p_demux ) ...@@ -286,7 +286,7 @@ static int Demux( demux_t *p_demux )
vlc_gc_decref( p_input ); vlc_gc_decref( p_input );
b_item = false; b_item = false;
} }
else if( !strcmp( psz_elname, "image" ) ) else if( !strcmp( node, "image" ) )
{ {
b_image = false; b_image = false;
} }
......
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