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:
@@ -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++;
|
||||
}
|
||||
|
Reference in New Issue
Block a user