aboutsummaryrefslogtreecommitdiff
path: root/src/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/json.c')
-rw-r--r--src/json.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/json.c b/src/json.c
index def5e63d3..69950766d 100644
--- a/src/json.c
+++ b/src/json.c
@@ -3375,6 +3375,8 @@ static u32 jsonXlateBlobToText(
if( zIn[0]=='-' ){
jsonAppendChar(pOut, '-');
k++;
+ }else if( zIn[0]=='+' ){
+ k++;
}
for(; k<sz; k++){
if( !sqlite3Isxdigit(zIn[k]) ){