mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-04-05 10:09:08 +00:00
Guard against hash keys with no values
This commit is contained in:
parent
45e37eb66a
commit
281b98e3d8
3
json.c
3
json.c
@ -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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user