From 415193ad8e09f24c995ba075676f2c7d293a87f1 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Thu, 6 Feb 2014 21:05:46 -0800 Subject: [PATCH] Remove old state resetting --- jsoncat.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/jsoncat.c b/jsoncat.c index 1d3c3d1..a545684 100644 --- a/jsoncat.c +++ b/jsoncat.c @@ -77,13 +77,12 @@ void json_print(json_object *j, int depth) { void process(FILE *f, char *fname) { json_pull *jp = json_begin_file(f); - json_object *j = NULL; + json_object *j; while ((j = json_parse(jp)) != NULL) { if (j->parent == NULL) { json_print(j, 0); printf("\n"); - j = NULL; } }