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

Improvements to the mechanism that attempts to report SQLITE_CORRUPT if

pread() says that the underlying filesystem is corrupt.

FossilOrigin-Name: b887c7504e7edeba758f3c1203c6cc56eef499fe05e7e6c6d82939bf7d78c57f
This commit is contained in:
drh
2020-11-18 21:50:05 +00:00
parent 5a07d10fd1
commit f56a4bfcd1
5 changed files with 14 additions and 17 deletions

View File

@@ -799,9 +799,6 @@ static SQLITE_NOINLINE int apiHandleError(sqlite3 *db, int rc){
sqlite3Error(db, SQLITE_NOMEM);
return SQLITE_NOMEM_BKPT;
}
if( rc==SQLITE_IOERR_CORRUPTFS ){
return SQLITE_CORRUPT_BKPT;
}
return rc & db->errMask;
}