Commit 53ee46f2 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix use of unitialized value.

parent 72af6adc
...@@ -65,6 +65,7 @@ void system_Init( libvlc_int_t *p_this, int *pi_argc, const char *ppsz_argv[] ) ...@@ -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';
} }
else psz_path[0] = '\0';
psz_vlc = strrchr( psz_path, '\\' ); psz_vlc = strrchr( psz_path, '\\' );
if( psz_vlc ) 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