aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-12-22 01:46:04 +0000
committerdrh <drh@noemail.net>2011-12-22 01:46:04 +0000
commit3b5b351b656050b2f8411e4ecbd7ede68523ec5c (patch)
treed2ad2470e46b7457795cf0711618d014360f08fb /src
parentf12b3f609f08e923833bc6c37863f11a82582c03 (diff)
downloadsqlite-3b5b351b656050b2f8411e4ecbd7ede68523ec5c.tar.gz
sqlite-3b5b351b656050b2f8411e4ecbd7ede68523ec5c.zip
Remove a redundant assignment operator.
FossilOrigin-Name: 19a6852a1e5905b35bc69b309951c5ec8ecd0bef
Diffstat (limited to 'src')
-rw-r--r--src/wal.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wal.c b/src/wal.c
index ff33d5f30..d3b66b5b9 100644
--- a/src/wal.c
+++ b/src/wal.c
@@ -1154,7 +1154,6 @@ static int walIndexRecover(Wal *pWal){
/* Read all frames from the log file. */
iFrame = 0;
- isValid = 1;
for(iOffset=WAL_HDRSIZE; (iOffset+szFrame)<=nSize; iOffset+=szFrame){
u32 pgno; /* Database page number for frame */
u32 nTruncate; /* dbsize field from frame header */