Skip to content

Commit 2d0fc2f

Browse files
committed
Update impl_json.h
1 parent 269cc45 commit 2d0fc2f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/json/impl/impl_json.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,8 @@ json_parse(const char * __restrict contents, bool reverse) {
224224
}
225225

226226
/* skip trailing quote */
227-
c = *++p;
227+
/* c = *++p; */
228+
++p;
228229
} else {
229230
while (c != ',' && c != '{' && c != '}' && c != '[' && c != ']') {
230231
if (c == '\0')

0 commit comments

Comments
 (0)