1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Remove an incorrect assert() from the deserialize in-memory database VFS.

FossilOrigin-Name: 80151d7e3b9fd84086874a1cebed024b9e14005ea2d0108cf6efcd07373fcf51
This commit is contained in:
drh
2019-01-31 16:09:48 +00:00
parent 23a885956e
commit 3bf0d7a881
3 changed files with 7 additions and 8 deletions

View File

@@ -306,7 +306,6 @@ static int memdbFetch(
){
MemFile *p = (MemFile *)pFile;
if( iOfst+iAmt>p->sz ){
assert( CORRUPT_DB );
*pp = 0;
}else{
p->nMmap++;