From e50ff5f2f8dac5dcc68511fefad4f549bef00caf Mon Sep 17 00:00:00 2001 From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Thu, 9 Dec 2021 10:47:49 +0100 Subject: [PATCH] Variable `flags` is assigned a value that is never used --- json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json.c b/json.c index deef49ff..c79559a3 100644 --- a/json.c +++ b/json.c @@ -261,7 +261,7 @@ json_value * json_parse_ex (json_settings * settings, const json_char * end; json_value * top, * root, * alloc = 0; json_state state = { 0 }; - long flags = 0; + long flags; int num_digits = 0; double num_e = 0, num_fraction = 0;