diff options
author | drh <> | 2023-04-05 02:50:00 +0000 |
---|---|---|
committer | drh <> | 2023-04-05 02:50:00 +0000 |
commit | 9d10ba8b1f16db5ee51fd661edd8c7a336fcabb1 (patch) | |
tree | a608d3b850690f4017359b7c290467c5701b8f72 /src | |
parent | 8907cb2f88be0528092661a9d40fc57911027e9b (diff) | |
download | sqlite-9d10ba8b1f16db5ee51fd661edd8c7a336fcabb1.tar.gz sqlite-9d10ba8b1f16db5ee51fd661edd8c7a336fcabb1.zip |
Remove an ALWAYS() that might now be false due to the prior check-in.
FossilOrigin-Name: fc68993501aaa7180f5457dcb3c296e5b199904a385d98e2bcad7854e34d428e
Diffstat (limited to 'src')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index f1ce6ba4a..3dccb3bac 100644 --- a/src/expr.c +++ b/src/expr.c @@ -281,7 +281,7 @@ CollSeq *sqlite3ExprCollSeq(Parse *pParse, const Expr *pExpr){ assert( !ExprUseXList(p) || p->x.pList==0 || p->pRight==0 ); if( ExprUseXList(p) && p->x.pList!=0 && !db->mallocFailed ){ int i; - for(i=0; ALWAYS(i<p->x.pList->nExpr); i++){ + for(i=0; i<p->x.pList->nExpr; i++){ if( ExprHasProperty(p->x.pList->a[i].pExpr, EP_Collate) ){ pNext = p->x.pList->a[i].pExpr; break; |