diff options
author | drh <> | 2025-02-01 23:28:49 +0000 |
---|---|---|
committer | drh <> | 2025-02-01 23:28:49 +0000 |
commit | 454a426e31f75e8f09973c7704b47e5df6c88dc7 (patch) | |
tree | 76e7163e9231fdf1d005bc7b796dcdecc7c905f5 /src | |
parent | 5c72a39cfbf461e66ce7482a17d9448f65108883 (diff) | |
download | sqlite-454a426e31f75e8f09973c7704b47e5df6c88dc7.tar.gz sqlite-454a426e31f75e8f09973c7704b47e5df6c88dc7.zip |
Remove an ALWAYS() added by [2567298f4b0fdfeb] because dbsqlfuzz found a way
to reach it. The test case was added to TH3.
FossilOrigin-Name: d08a7aa8987458a91fcb861d58289e622ba8722936c7874a284f9f2fd782e269
Diffstat (limited to 'src')
-rw-r--r-- | src/whereexpr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/whereexpr.c b/src/whereexpr.c index 2c4d0fef0..4a24dadd2 100644 --- a/src/whereexpr.c +++ b/src/whereexpr.c @@ -1400,7 +1400,7 @@ static void exprAnalyze( } /* Increment the value of the last utf8 character in the prefix. */ - while( *pC==0xBF && ALWAYS(pC>(u8*)pStr2->u.zToken) ){ + while( *pC==0xBF && pC>(u8*)pStr2->u.zToken ){ *pC = 0x80; pC--; } |