mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Change the names of the Vdbe.pVNext and Vdbe.ppVPrev fields to make them
unique. Change to ppVPrev to save a few bytes and a few CPU cycles. FossilOrigin-Name: 34b8ea31877ae8b40729d37b3f51ae7e15f38be841881ea4a37c9c8f0a52896d
This commit is contained in:
@@ -1811,7 +1811,7 @@ sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt){
|
||||
if( pStmt==0 ){
|
||||
pNext = (sqlite3_stmt*)pDb->pVdbe;
|
||||
}else{
|
||||
pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pNext;
|
||||
pNext = (sqlite3_stmt*)((Vdbe*)pStmt)->pVNext;
|
||||
}
|
||||
sqlite3_mutex_leave(pDb->mutex);
|
||||
return pNext;
|
||||
|
Reference in New Issue
Block a user