diff options
author | dan <dan@noemail.net> | 2015-05-06 18:15:28 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-05-06 18:15:28 +0000 |
commit | 828cdb3473fadfcd8b78251e747ab3b9df1eda4a (patch) | |
tree | a09b58c7766c09beacf854d8047a6899a362bd6b /src/expr.c | |
parent | 739b903e6d37e64690dbb8d1ac12f8515c52eb2d (diff) | |
parent | b0cba4bc1169d89bec0e5e355df53593cf9571c1 (diff) | |
download | sqlite-828cdb3473fadfcd8b78251e747ab3b9df1eda4a.tar.gz sqlite-828cdb3473fadfcd8b78251e747ab3b9df1eda4a.zip |
Merge latest trunk changes with this branch.
FossilOrigin-Name: 8a13e1fdbe523f2ace6cbb5bcb22cd4441f3cbf8
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 115af2059..7e27ba99f 100644 --- a/src/expr.c +++ b/src/expr.c @@ -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; |