aboutsummaryrefslogtreecommitdiff
path: root/ext/misc/json1.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-10-16 15:16:06 +0000
committerdrh <drh@noemail.net>2015-10-16 15:16:06 +0000
commitb9e8f59b633dec4047a6ad092305be3a21cbc792 (patch)
treee41678eb3f9e548b5eb8850bc0e45ac078393714 /ext/misc/json1.c
parentbe37c12423417ea69bcf507908554667e9f750a0 (diff)
downloadsqlite-b9e8f59b633dec4047a6ad092305be3a21cbc792.tar.gz
sqlite-b9e8f59b633dec4047a6ad092305be3a21cbc792.zip
Form-feed is not valid whitespace for json.
Fix for ticket [57eec374ae1d0a1d] FossilOrigin-Name: 28957d635961c525f735a52b8ffe3e69ccf31382
Diffstat (limited to 'ext/misc/json1.c')
-rw-r--r--ext/misc/json1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/misc/json1.c b/ext/misc/json1.c
index 337e4d3b0..fa62237b8 100644
--- a/ext/misc/json1.c
+++ b/ext/misc/json1.c
@@ -52,7 +52,7 @@ SQLITE_EXTENSION_INIT1
** increase for the parser. (Ubuntu14.10 gcc 4.8.4 x64 with -Os).
*/
static const char jsonIsSpace[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 1, 1, 0, 0,
+ 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 1, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,