1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Remove an ALWAYS() added by [2567298f4b0fdfeb] because dbsqlfuzz found a way

to reach it.  The test case was added to TH3.

FossilOrigin-Name: d08a7aa8987458a91fcb861d58289e622ba8722936c7874a284f9f2fd782e269
This commit is contained in:
drh
2025-02-01 23:28:49 +00:00
parent 5c72a39cfb
commit 454a426e31
3 changed files with 8 additions and 8 deletions

View File

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