0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 03:52:22 +02:00

ipc: raise json nesting limit

Fixes the issue pointed out in #4394.
This commit is contained in:
wm4 2017-05-03 20:47:11 +02:00
parent de225e3a6a
commit 9f268d7613

View File

@ -205,9 +205,9 @@ static char *json_execute_command(struct mpv_handle *client, void *ta_parent,
mpv_node reply_node = {.format = MPV_FORMAT_NODE_MAP, .u.list = NULL};
mpv_node *reqid_node = NULL;
rc = json_parse(ta_parent, &msg_node, &src, 3);
rc = json_parse(ta_parent, &msg_node, &src, 50);
if (rc < 0) {
mp_err(log, "malformed JSON received\n");
mp_err(log, "malformed JSON received: '%s'\n", src);
rc = MPV_ERROR_INVALID_PARAMETER;
goto error;
}