3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-10-06 11:28:38 +02:00

json: add NULL check for container on get_container

In case the caller just wants to check an object is iterable,
without actually iterating it.
This commit is contained in:
James Prestwood 2022-01-06 14:52:56 -08:00 committed by Denis Kenzior
parent 380896d08a
commit 1f91c03bf6

View File

@ -393,7 +393,8 @@ bool json_iter_get_container(struct json_iter *iter,
if (t->type != JSMN_OBJECT && t->type != JSMN_ARRAY) if (t->type != JSMN_OBJECT && t->type != JSMN_ARRAY)
return false; return false;
iter_recurse(iter, t, container); if (container)
iter_recurse(iter, t, container);
return true; return true;
} }