Check for key == NULL in json_object_get and json_object_del

This commit is contained in:
nmlgc 2013-12-28 05:58:09 +01:00
parent 9c8b3c833f
commit 98610bfcec

View File

@ -76,7 +76,7 @@ json_t *json_object_get(const json_t *json, const char *key)
{ {
json_object_t *object; json_object_t *object;
if(!json_is_object(json)) if(!key || !json_is_object(json))
return NULL; return NULL;
object = json_to_object(json); object = json_to_object(json);
@ -121,7 +121,7 @@ int json_object_del(json_t *json, const char *key)
{ {
json_object_t *object; json_object_t *object;
if(!json_is_object(json)) if(!key || !json_is_object(json))
return -1; return -1;
object = json_to_object(json); object = json_to_object(json);