Commit 905a7928 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix use of unitialized value.

(cherry picked from commit 53ee46f25511be4057e325c5875a3749de32a64b)
Signed-off-by: default avatarRémi Duraffort <ivoire@videolan.org>
parent bffd24e9
......@@ -65,6 +65,7 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] )
}
else psz_path[0] = '\0';
}
else psz_path[0] = '\0';
psz_vlc = strrchr( psz_path, '\\' );
if( psz_vlc )
......
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