mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Additional fixes for yet more completely harmless compiler warnings.
FossilOrigin-Name: 7d3772f0bd0e2602fe919573b49001da4e2b9f3874cb0183dea675204afa7abd
This commit is contained in:
@@ -735,7 +735,9 @@ int sqlite3VdbeExec(
|
||||
/*** INSERT STACK UNION HERE ***/
|
||||
|
||||
assert( p->eVdbeState==VDBE_RUN_STATE ); /* sqlite3_step() verifies this */
|
||||
if( DbMaskNonZero(p->lockMask) )sqlite3VdbeEnter(p);
|
||||
if( DbMaskNonZero(p->lockMask) ){
|
||||
sqlite3VdbeEnter(p);
|
||||
}
|
||||
#ifndef SQLITE_OMIT_PROGRESS_CALLBACK
|
||||
if( db->xProgress ){
|
||||
u32 iPrior = p->aCounter[SQLITE_STMTSTATUS_VM_STEP];
|
||||
@@ -8838,7 +8840,9 @@ vdbe_return:
|
||||
}
|
||||
#endif
|
||||
p->aCounter[SQLITE_STMTSTATUS_VM_STEP] += (int)nVmStep;
|
||||
if( DbMaskNonZero(p->lockMask) ) sqlite3VdbeLeave(p);
|
||||
if( DbMaskNonZero(p->lockMask) ){
|
||||
sqlite3VdbeLeave(p);
|
||||
}
|
||||
assert( rc!=SQLITE_OK || nExtraDelete==0
|
||||
|| sqlite3_strlike("DELETE%",p->zSql,0)!=0
|
||||
);
|
||||
|
Reference in New Issue
Block a user