aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <>2025-04-21 23:44:55 +0000
committerdrh <>2025-04-21 23:44:55 +0000
commitd2fd099570172fd82a31c5e2e57800d1fc79b68e (patch)
treebd739298b3d638ec44cdb739c1220b4774799948 /src
parent81cde80f7b0fec5bf64fb450e94a62047fb5c5fd (diff)
downloadsqlite-d2fd099570172fd82a31c5e2e57800d1fc79b68e.tar.gz
sqlite-d2fd099570172fd82a31c5e2e57800d1fc79b68e.zip
Remove an extra conditional that was inserted earlier today and which
is unreachable. FossilOrigin-Name: 5ea56af2d27611c5a8ea275316d21a02e70032f93243549ae776e9a89edc6229
Diffstat (limited to 'src')
-rw-r--r--src/json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/json.c b/src/json.c
index c29caa46b..1528fdb70 100644
--- a/src/json.c
+++ b/src/json.c
@@ -1394,7 +1394,7 @@ static u32 jsonbValidityCheck(
case JSONB_INT5: {
if( sz<3 ) return i+1;
j = i+n;
- if( z[j]=='-' || z[j]=='+' ){
+ if( z[j]=='-' ){
if( sz<4 ) return i+1;
j++;
}