aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <>2025-07-04 14:24:18 +0000
committerdrh <>2025-07-04 14:24:18 +0000
commit45bc9b9f97aaa8f1839f3583f04de4b56d7ce824 (patch)
tree6c3151898973a56b9765e6bae81ab84860e86290 /src/expr.c
parent478dfc7e74921f391732e03b486c786d4c7bd49b (diff)
parente33ea17d24d9afe35b7ced85754e92ac513120e9 (diff)
downloadsqlite-45bc9b9f97aaa8f1839f3583f04de4b56d7ce824.tar.gz
sqlite-45bc9b9f97aaa8f1839f3583f04de4b56d7ce824.zip
Merge fixes from trunk into the empty-table-optimizations branch
FossilOrigin-Name: 6f98b16d210a9f5b6ca4b4599e3dab3263eddbae7c70ddbcabf988f4a1014e8b
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expr.c b/src/expr.c
index ebac654a2..3f040309a 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -2428,6 +2428,7 @@ static int exprComputeOperands(
VdbeComment((v, "skip left operand"));
VdbeCoverage(v);
}else{
+ r2 = 0; /* Silence a false-positive uninit-var warning in MSVC */
addrIsNull = 0;
}
r1 = sqlite3ExprCodeTemp(pParse, pExpr->pLeft, pFree1);