1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-14 00:22:38 +03:00

Remove some asserts that refer to variables removed in (5830). (CVS 5884)

FossilOrigin-Name: 9d880a6fd244fb73d0fce7e8180177c54d95cde2
This commit is contained in:
danielk1977
2008-11-11 18:43:00 +00:00
parent 41a6a61d94
commit 95338ab70c
3 changed files with 8 additions and 10 deletions

View File

@@ -11,7 +11,7 @@
*************************************************************************
** This file implements that page cache.
**
** @(#) $Id: pcache.c,v 1.35 2008/11/11 00:36:17 drh Exp $
** @(#) $Id: pcache.c,v 1.36 2008/11/11 18:43:00 danielk1977 Exp $
*/
#include "sqliteInt.h"
@@ -502,8 +502,6 @@ static void pcachePageFree(PgHdr *p){
static int pcachePageSize(PgHdr *p){
assert( sqlite3_mutex_held(pcache_g.mutex) );
assert( !pcache_g.pStart );
assert( p->apSave[0]==0 );
assert( p->apSave[1]==0 );
assert( p && p->pCache );
return sqlite3MallocSize(p);
}