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

Fix a harmless compiler warning in VS2013.

FossilOrigin-Name: 35f2793db5eb58484554477a23f8320843ebcd71
This commit is contained in:
drh
2014-02-08 13:22:36 +00:00
parent 6645370e5b
commit 04d0bcd533
3 changed files with 11 additions and 11 deletions

View File

@@ -1683,7 +1683,7 @@ static int writeMasterJournal(Pager *pPager, const char *zMaster){
** already in memory.
*/
static PgHdr *pager_lookup(Pager *pPager, Pgno pgno){
PgHdr *p; /* Return value */
PgHdr *p = 0; /* Return value */
/* It is not possible for a call to PcacheFetch() with createFlag==0 to
** fail, since no attempt to allocate dynamic memory will be made.