diff options
author | drh <> | 2021-04-26 21:00:51 +0000 |
---|---|---|
committer | drh <> | 2021-04-26 21:00:51 +0000 |
commit | feef4472715787c269f3a9d2078f89e59dc9bd3f (patch) | |
tree | eabecd18182d768907becf41cff3e2941336d9bf /src/expr.c | |
parent | ada2323d95569c557a244bf0769e94623a312b48 (diff) | |
download | sqlite-feef4472715787c269f3a9d2078f89e59dc9bd3f.tar.gz sqlite-feef4472715787c269f3a9d2078f89e59dc9bd3f.zip |
Add ALWAYS() to branches that are no longer reachable due to recent
enhancements.
FossilOrigin-Name: 63c50fbdeed831ba450d1dce67e968a7daa2b69ac1270eb271fb1e1873d4a07e
Diffstat (limited to 'src/expr.c')
-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 c869d762f..140260931 100644 --- a/src/expr.c +++ b/src/expr.c @@ -99,7 +99,7 @@ Expr *sqlite3ExprAddCollateToken( if( pExpr==0 ) return 0; if( pExpr->op==TK_VECTOR ){ ExprList *pList = pExpr->x.pList; - if( pList!=0 ){ + if( ALWAYS(pList!=0) ){ int i; for(i=0; i<pList->nExpr; i++){ pList->a[i].pExpr = sqlite3ExprAddCollateToken(pParse,pList->a[i].pExpr, |