1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Fix a minor coding inefficiency found during pre-release inspection.

FossilOrigin-Name: cc50883d67334507227e1384fef6cc7c93fd7de1
This commit is contained in:
drh
2015-05-05 16:57:52 +00:00
parent bfa582a3f3
commit 0a96931b76
3 changed files with 8 additions and 8 deletions

View File

@@ -1252,7 +1252,7 @@ u32 sqlite3ExprListFlags(const ExprList *pList){
if( pList ){
for(i=0; i<pList->nExpr; i++){
Expr *pExpr = pList->a[i].pExpr;
if( ALWAYS(pExpr) ) m |= pList->a[i].pExpr->flags;
if( ALWAYS(pExpr) ) m |= pExpr->flags;
}
}
return m;