Commit 07867ac8 authored by Rémi Duraffort's avatar Rémi Duraffort

demux_gme: fix potential use of uninitialized value.

parent 7ad6676d
......@@ -115,7 +115,7 @@ static int Open( vlc_object_t *p_this )
demux_t *p_demux = (demux_t*)p_this;
demux_sys_t *p_sys;
char *ext;
int i;
int i = 0;
vlc_value_t val;
/* We accept file based on extention match */
......
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