json.c: sync from json2tsv: fix: reset state for expecting key string in objects - jfconvert - JSON Feed (subset) to sfeed or Atom converter
HTML git clone git://git.codemadness.org/jfconvert
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 283d0c62865adfe4ea69c696999720d3c9228a19
DIR parent 4644c5f38b0edd54cb68018524b2133e7ccd61e5
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Mon, 5 Aug 2024 12:13:13 +0200
json.c: sync from json2tsv: fix: reset state for expecting key string in objects
Diffstat:
M json.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
DIR diff --git a/json.c b/json.c
@@ -262,6 +262,7 @@ escchr:
iskey = 1;
expect = EXPECT_STRING;
} else {
+ iskey = 0;
expect = EXPECT_VALUE;
}
break;