From 281b98e3d826b354dc0e3e5cc977b57af037e059 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 5 Feb 2014 18:34:02 -0800 Subject: [PATCH] Guard against hash keys with no values --- json.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/json.c b/json.c index e88406f..57b3494 100644 --- a/json.c +++ b/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; }