1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 00:42:57 +00:00

m_option: fix -vf-del in profiles

We don't bother with option verification (as it happens in profiles),
because it's barely possible.
This commit is contained in:
wm4 2013-05-21 00:04:46 +02:00
parent 266230ad64
commit d356f3efd2

View File

@ -2047,8 +2047,9 @@ static bool obj_setting_equals(m_obj_settings_t *a, m_obj_settings_t *b)
static int obj_settings_list_del(struct bstr opt_name, struct bstr param,
void *dst)
{
m_obj_settings_t *obj_list = dst ? VAL(dst) : NULL;
int r = 1;
if (!dst)
return 1; // for profiles; pretend all is ok
m_obj_settings_t *obj_list = VAL(dst);
if (dst && !obj_list) {
mp_msg(MSGT_CFGPARSER, MSGL_WARN, "Option %.*s: the list is empty.\n",
@ -2103,7 +2104,7 @@ static int obj_settings_list_del(struct bstr opt_name, struct bstr param,
}
talloc_free(mark_del);
return r;
return 1;
}
static void free_obj_settings_list(void *dst)