diff options
author | drh <drh@noemail.net> | 2007-06-26 22:10:12 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-06-26 22:10:12 +0000 |
commit | 2f9ad1b47da4d34895605000d8af36adb822cf50 (patch) | |
tree | c3cc8d81154a705e8effb8c507864c646abd0721 /src/pager.c | |
parent | 9ff802627a28e59b3c2b74cf9dba91bf9caf774b (diff) | |
download | sqlite-2f9ad1b47da4d34895605000d8af36adb822cf50.tar.gz sqlite-2f9ad1b47da4d34895605000d8af36adb822cf50.zip |
Remove vestigal code from Makefile.linux-gcc. Ticket #2466. (CVS 4133)
FossilOrigin-Name: 338c18791006bac3709410087316700aad3b332f
Diffstat (limited to 'src/pager.c')
-rw-r--r-- | src/pager.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pager.c b/src/pager.c index 99c1f7934..47568a406 100644 --- a/src/pager.c +++ b/src/pager.c @@ -18,7 +18,7 @@ ** file simultaneously, or one process from reading the database while ** another is writing. ** -** @(#) $Id: pager.c,v 1.348 2007/06/18 17:25:18 drh Exp $ +** @(#) $Id: pager.c,v 1.349 2007/06/26 22:10:12 drh Exp $ */ #ifndef SQLITE_OMIT_DISKIO #include "sqliteInt.h" @@ -3878,7 +3878,6 @@ static int pager_incr_changecounter(Pager *pPager){ /* Increment the value just read and write it back to byte 24. */ change_counter++; put32bits(((char*)PGHDR_TO_DATA(pPgHdr))+24, change_counter); - /* Release the page reference. */ sqlite3PagerUnref(pPgHdr); pPager->changeCountDone = 1; |