mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-25 17:59:25 +01: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:
parent
380896d08a
commit
1f91c03bf6
@ -393,7 +393,8 @@ bool json_iter_get_container(struct json_iter *iter,
|
||||
if (t->type != JSMN_OBJECT && t->type != JSMN_ARRAY)
|
||||
return false;
|
||||
|
||||
iter_recurse(iter, t, container);
|
||||
if (container)
|
||||
iter_recurse(iter, t, container);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user