File tree 2 files changed +10
-4
lines changed
SQLite3MultipleCiphers/src
2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -92309,10 +92309,13 @@ SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
92309
92309
if( vdbeSafetyNotNull(v) ){
92310
92310
return SQLITE_MISUSE_BKPT;
92311
92311
}
92312
+ db = v->db;
92312
92313
if( v->isInterrupted ){
92313
- return SQLITE_INTERRUPT;
92314
+ rc = SQLITE_INTERRUPT;
92315
+ v->rc = rc;
92316
+ db->errCode = rc;
92317
+ return rc;
92314
92318
}
92315
- db = v->db;
92316
92319
sqlite3_mutex_enter(db->mutex);
92317
92320
while( (rc = sqlite3Step(v))==SQLITE_SCHEMA
92318
92321
&& cnt++ < SQLITE_MAX_SCHEMA_RETRY ){
Original file line number Diff line number Diff line change @@ -92309,10 +92309,13 @@ SQLITE_API int sqlite3_step(sqlite3_stmt *pStmt){
92309
92309
if( vdbeSafetyNotNull(v) ){
92310
92310
return SQLITE_MISUSE_BKPT;
92311
92311
}
92312
+ db = v->db;
92312
92313
if( v->isInterrupted ){
92313
- return SQLITE_INTERRUPT;
92314
+ rc = SQLITE_INTERRUPT;
92315
+ v->rc = rc;
92316
+ db->errCode = rc;
92317
+ return rc;
92314
92318
}
92315
- db = v->db;
92316
92319
sqlite3_mutex_enter(db->mutex);
92317
92320
while( (rc = sqlite3Step(v))==SQLITE_SCHEMA
92318
92321
&& cnt++ < SQLITE_MAX_SCHEMA_RETRY ){
You can’t perform that action at this time.
0 commit comments