1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove an extra conditional that was inserted earlier today and which

is unreachable.

FossilOrigin-Name: 5ea56af2d27611c5a8ea275316d21a02e70032f93243549ae776e9a89edc6229
This commit is contained in:
drh
2025-04-21 23:44:55 +00:00
parent 81cde80f7b
commit d2fd099570
3 changed files with 8 additions and 8 deletions

View File

@@ -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++;
}