From: Petri Lehtinen Date: Tue, 4 Aug 2009 17:54:47 +0000 (+0300) Subject: Refuse to dump other types than array and object as the root value X-Git-Tag: 1.0_branch~258 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0428f48d19b5206547d9b4ea010ff41eb5e5d92d;p=profile%2Fivi%2Fjansson.git Refuse to dump other types than array and object as the root value --- diff --git a/src/dump.c b/src/dump.c index c00260c..4831873 100644 --- a/src/dump.c +++ b/src/dump.c @@ -237,6 +237,9 @@ char *json_dumps(const json_t *json, uint32_t flags) strbuffer_t strbuff; char *result; + if(!json_is_array(json) && !json_is_object(json)) + return NULL; + if(strbuffer_init(&strbuff)) return NULL; @@ -254,6 +257,9 @@ char *json_dumps(const json_t *json, uint32_t flags) int json_dumpf(const json_t *json, FILE *output, uint32_t flags) { + if(!json_is_array(json) && !json_is_object(json)) + return -1; + if(do_dump(json, flags, 0, dump_to_file, (void *)output)) return -1; return dump_to_file("\n", 1, (void *)output);