1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Simplification to sqlite3ApiExit(). Generates identical machine code, but

easier for humans to read.

FossilOrigin-Name: 793bbfa5af9721bc3a61e8e5eda46dfce2f5ff3f223a7564c9e1b09f11e53cb3
This commit is contained in:
drh
2023-10-11 13:34:18 +00:00
parent 853fb5e723
commit 58c7b770de
3 changed files with 8 additions and 8 deletions

View File

@@ -896,5 +896,5 @@ int sqlite3ApiExit(sqlite3* db, int rc){
if( db->mallocFailed || rc ){
return apiHandleError(db, rc);
}
return rc & db->errMask;
return 0;
}