Commit 6efc83a2 authored by Yoann Peronneau's avatar Yoann Peronneau

* fix a segfault

parent 05987b20
......@@ -1537,7 +1537,7 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[],
"You should use --%s instead.\n",
p_conf->psz_name, p_conf->psz_current);
}
*psz_name = *(p_conf->psz_current);
psz_name = (char *)p_conf->psz_current;
p_conf = config_FindConfig( p_this, psz_name );
}
......
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