aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/vdbe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbe.c b/src/vdbe.c
index c1952f205..2c924abfe 100644
--- a/src/vdbe.c
+++ b/src/vdbe.c
@@ -4481,8 +4481,8 @@ case OP_SeekScan: {
printf("... %d steps and then skip\n", pOp->p1 - n);
}
#endif
- pOp++;
VdbeBranchTaken(1,3);
+ pOp++;
goto jump_to_p2;
}
if( res==0 ){
@@ -4491,8 +4491,8 @@ case OP_SeekScan: {
printf("... %d steps and then success\n", pOp->p1 - n);
}
#endif
- pOp += 2;
VdbeBranchTaken(2,3);
+ pOp += 2;
break;
}
if( n<=0 ){