aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
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++;
}