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

Cleanup unused function in pager.c. This is the conclusion of the fix

to ticket #2518. We believe the fix is complete and correct. (CVS 4165)

FossilOrigin-Name: 31dba1e933c523a47fdd007c2c7492133dfe72f2
This commit is contained in:
drh
2007-07-20 00:33:36 +00:00
parent 3260548b53
commit b100391318
3 changed files with 9 additions and 20 deletions

View File

@@ -18,7 +18,7 @@
** file simultaneously, or one process from reading the database while
** another is writing.
**
** @(#) $Id: pager.c,v 1.350 2007/07/19 16:35:17 drh Exp $
** @(#) $Id: pager.c,v 1.351 2007/07/20 00:33:36 drh Exp $
*/
#ifndef SQLITE_OMIT_DISKIO
#include "sqliteInt.h"
@@ -550,17 +550,6 @@ static int write32bits(OsFile *fd, u32 val){
return sqlite3OsWrite(fd, ac, 4);
}
/*
** Read a 32-bit integer at offset 'offset' from the page identified by
** page header 'p'.
*/
static u32 retrieve32bits(PgHdr *p, int offset){
unsigned char *ac;
ac = &((unsigned char*)PGHDR_TO_DATA(p))[offset];
return sqlite3Get4byte(ac);
}
/*
** This function should be called when an error occurs within the pager
** code. The first argument is a pointer to the pager structure, the
@@ -3873,7 +3862,7 @@ static int pager_incr_changecounter(Pager *pPager){
if( rc!=SQLITE_OK ) return rc;
/* Increment the value just read and write it back to byte 24. */
change_counter = sqlite3Get4byte(pPager->dbFileVers);
change_counter = sqlite3Get4byte((u8*)pPager->dbFileVers);
change_counter++;
put32bits(((char*)PGHDR_TO_DATA(pPgHdr))+24, change_counter);
/* Release the page reference. */