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

Remove an ALWAYS() added in [c50e6c2ace49d092] because it is sometimes false.

dbsqlfuzz c393a4f783d42efd9552772110aff7e5d937f15e.

FossilOrigin-Name: b9daf37e57cde12c4de271a2b1995e8e91b6411f8c2e8882e536241929609b3a
This commit is contained in:
drh
2023-12-24 12:02:36 +00:00
parent 5a85cf5879
commit 71a32aede3
3 changed files with 8 additions and 8 deletions

View File

@@ -6476,7 +6476,7 @@ static int exprRefToSrcList(Walker *pWalker, Expr *pExpr){
int i;
struct RefSrcList *p = pWalker->u.pRefSrcList;
SrcList *pSrc = p->pRef;
int nSrc = ALWAYS(pSrc) ? pSrc->nSrc : 0;
int nSrc = pSrc ? pSrc->nSrc : 0;
for(i=0; i<nSrc; i++){
if( pExpr->iTable==pSrc->a[i].iCursor ){
pWalker->eCode |= 1;