Commit 2ee43275 authored by Ludovic Fauvet's avatar Ludovic Fauvet Committed by Rémi Denis-Courmont

fix use of uninitialized variable on error

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 25a85e92
...@@ -2345,7 +2345,7 @@ static int InputSourceInit( input_thread_t *p_input, ...@@ -2345,7 +2345,7 @@ static int InputSourceInit( input_thread_t *p_input,
input_source_t *in, const char *psz_mrl, input_source_t *in, const char *psz_mrl,
const char *psz_forced_demux, bool b_in_can_fail ) const char *psz_forced_demux, bool b_in_can_fail )
{ {
const char *psz_access, *psz_demux, *psz_path, *psz_anchor; const char *psz_access, *psz_demux, *psz_path, *psz_anchor = NULL;
char *psz_var_demux = NULL; char *psz_var_demux = NULL;
double f_fps; double f_fps;
......
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