diff options
author | danielk1977 <danielk1977@noemail.net> | 2009-01-08 18:04:13 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2009-01-08 18:04:13 +0000 |
commit | ad0ea2280ae1a1d29a57d47ac232476a16bd1bdd (patch) | |
tree | 70a3c698857714255241149b85cbc2c377d5438e /src | |
parent | 484fe37c9eb9b48000581b5f822f56f56bfa3b65 (diff) | |
download | sqlite-ad0ea2280ae1a1d29a57d47ac232476a16bd1bdd.tar.gz sqlite-ad0ea2280ae1a1d29a57d47ac232476a16bd1bdd.zip |
Fix a comment in pager.c. No actual code changes. (CVS 6145)
FossilOrigin-Name: 44d3bfddf44b10b3744db6b41bc3f53c3903df5e
Diffstat (limited to 'src')
-rw-r--r-- | src/pager.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pager.c b/src/pager.c index 6a65c09e8..055bdb43c 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.542 2009/01/08 17:50:46 danielk1977 Exp $ +** @(#) $Id: pager.c,v 1.543 2009/01/08 18:04:14 danielk1977 Exp $ */ #ifndef SQLITE_OMIT_DISKIO #include "sqliteInt.h" @@ -2912,6 +2912,7 @@ static int pagerSharedLock(Pager *pPager){ /* Playback and delete the journal. Drop the database write ** lock and reacquire the read lock. Purge the cache before ** playing back the hot-journal so that we don't end up with + ** an inconsistent cache. */ sqlite3PcacheClear(pPager->pPCache); rc = pager_playback(pPager, 1); |