jfconvert

JSON Feed (subset) to sfeed or Atom converter
git clone git://git.codemadness.org/jfconvert
Log | Files | Refs | README | LICENSE

commit 283d0c62865adfe4ea69c696999720d3c9228a19
parent 4644c5f38b0edd54cb68018524b2133e7ccd61e5
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:
Mjson.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

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;