1
mirror of https://github.com/mpv-player/mpv synced 2024-08-20 08:55:06 +02:00

m_config: profile option values can be NULL

Sigh.
This commit is contained in:
wm4 2016-08-29 09:30:39 +02:00
parent f42e4374d5
commit bda614bfd8

View File

@ -953,7 +953,8 @@ struct mpv_node m_config_get_profiles(struct m_config *config)
for (int n = 0; n < profile->num_opts; n++) {
struct mpv_node *opt_entry = node_array_add(opts, MPV_FORMAT_NODE_MAP);
node_map_add_string(opt_entry, "key", profile->opts[n * 2 + 0]);
node_map_add_string(opt_entry, "value", profile->opts[n * 2 + 1]);
if (profile->opts[n * 2 + 1])
node_map_add_string(opt_entry, "value", profile->opts[n * 2 + 1]);
}
}