aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeaux.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2014-04-18 01:10:05 +0000
committerdrh <drh@noemail.net>2014-04-18 01:10:05 +0000
commita1a483d54e39272c16b5fa94e97578ccddee6a8a (patch)
treeb28bb3ea6cdff4cdefa08c26c870e415e996c730 /src/vdbeaux.c
parent652cc4b6dca02426e8d375a962bf8417850d9f7a (diff)
parent71794dbaeb73f594ef704fa265715b207f98edc7 (diff)
downloadsqlite-a1a483d54e39272c16b5fa94e97578ccddee6a8a.tar.gz
sqlite-a1a483d54e39272c16b5fa94e97578ccddee6a8a.zip
Merge recent trunk changes into sessions.
FossilOrigin-Name: 95e77efe076ab421bd246119c47dba5dacf9d087
Diffstat (limited to 'src/vdbeaux.c')
-rw-r--r--src/vdbeaux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index e98707f7f..bde895133 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -277,7 +277,7 @@ void sqlite3VdbeResolveLabel(Vdbe *v, int x){
int j = -1-x;
assert( v->magic==VDBE_MAGIC_INIT );
assert( j<p->nLabel );
- if( j>=0 && p->aLabel ){
+ if( ALWAYS(j>=0) && p->aLabel ){
p->aLabel[j] = v->nOp;
}
p->iFixedOp = v->nOp - 1;