Commit c1e36ae3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Fix NULL %s

parent 2e3d42f8
......@@ -370,6 +370,7 @@ void __config_ChainParse( vlc_object_t *p_this, const char *psz_prefix,
free( val2.psz_string );
}
var_Set( p_this, psz_name, val );
msg_Dbg( p_this, "set config option: %s to %s", psz_name, cfg->psz_value );
msg_Dbg( p_this, "set config option: %s to %s", psz_name,
cfg->psz_value ? cfg->psz_value : "(null)" );
}
}
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