aboutsummaryrefslogtreecommitdiff
path: root/src/wherecode.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2019-05-07 17:47:43 +0000
committerdrh <drh@noemail.net>2019-05-07 17:47:43 +0000
commitdd2d9a3d5a2648c3b0d2053db9e9aa60cc2be3e7 (patch)
treefec7f3a4208e985123401f0b578c75436758fc5d /src/wherecode.c
parentf4f86f3fcaa6110aaf64cd2f5b9f878dac17974c (diff)
downloadsqlite-dd2d9a3d5a2648c3b0d2053db9e9aa60cc2be3e7.tar.gz
sqlite-dd2d9a3d5a2648c3b0d2053db9e9aa60cc2be3e7.zip
Strive to prevent harmless compiler warnings in GCC 4.8.5.
FossilOrigin-Name: 8b6691f619ed9a56f6aecbd878ebb447c40984f8767508b248494fd9ec68fbaa
Diffstat (limited to 'src/wherecode.c')
-rw-r--r--src/wherecode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wherecode.c b/src/wherecode.c
index 6aadb2414..a62544845 100644
--- a/src/wherecode.c
+++ b/src/wherecode.c
@@ -2115,7 +2115,7 @@ Bitmask sqlite3WhereCodeOneLoopStart(
sqlite3VdbeGoto(v, pLevel->addrBrk);
sqlite3VdbeResolveLabel(v, iLoopBody);
- if( pWInfo->nLevel>1 ) sqlite3StackFree(db, pOrTab);
+ if( pWInfo->nLevel>1 ){ sqlite3StackFree(db, pOrTab); }
if( !untestedTerms ) disableTerm(pLevel, pTerm);
}else
#endif /* SQLITE_OMIT_OR_OPTIMIZATION */