mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Fix harmless compiler warnings.
FossilOrigin-Name: 29255664127a975e5b0d5767cd4e56d93ff2ea1994702cdfbdca1b700952502e
This commit is contained in:
@@ -1011,7 +1011,7 @@ case OP_Gosub: { /* jump */
|
||||
case OP_Return: { /* in1 */
|
||||
pIn1 = &aMem[pOp->p1];
|
||||
if( pIn1->flags & MEM_Int ){
|
||||
if( pOp->p3 ) VdbeBranchTaken(1, 2);
|
||||
if( pOp->p3 ){ VdbeBranchTaken(1, 2); }
|
||||
pOp = &aOp[pIn1->u.i];
|
||||
}else if( ALWAYS(pOp->p3) ){
|
||||
VdbeBranchTaken(0, 2);
|
||||
|
Reference in New Issue
Block a user