json.c: sync from json2tsv: fix: reset state for expecting key string in objects - frontends - front-ends for some sites (experiment)
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 0cff6e88783acaf162e35bad870aee41c6cc4f3e
DIR parent a638b721aedc966ba6e9e9d5b2833d3d805c9ded
HTML Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Mon, 5 Aug 2024 12:10:49 +0200
json.c: sync from json2tsv: fix: reset state for expecting key string in objects
https://git.codemadness.org/json2tsv/commit/f689b5a0a309659de177c06bed733a0411f6ab02.html
Diffstat:
M json.c | 1 +
1 file changed, 1 insertion(+), 0 deletions(-)
---
DIR diff --git a/json.c b/json.c
@@ -290,6 +290,7 @@ escchr:
iskey = 1;
expect = EXPECT_STRING;
} else {
+ iskey = 0;
expect = EXPECT_VALUE;
}
break;