Guard against hash keys with no values

This commit is contained in:
Eric Fischer 2014-02-05 18:34:02 -08:00
parent 45e37eb66a
commit 281b98e3d8

3
json.c
View File

@ -153,6 +153,9 @@ json_object *json_parse(FILE *f, json_object *current) {
if (current->parent == NULL || current->parent->type != JSON_HASH) {
json_error("} without {\n");
}
if (current->parent->hash != NULL || current->parent->hash->value == NULL) {
json_error("} without hash value\n");
}
return current->parent;
}