summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--db/dur_recover.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/dur_recover.h b/db/dur_recover.h
index 5f6faeefca1..1022fdcd767 100644
--- a/db/dur_recover.h
+++ b/db/dur_recover.h
@@ -15,7 +15,7 @@ namespace mongo {
*/
class RecoveryJob : boost::noncopyable {
public:
- RecoveryJob() :_lastDataSyncedFromLastRun(0), _mx("recovery") { _lastSeqMentionedInConsoleLog = 1; }
+ RecoveryJob() :_lastDataSyncedFromLastRun(0), _mx("recovery"), _recovering(false) { _lastSeqMentionedInConsoleLog = 1; }
void go(vector<path>& files);
~RecoveryJob();
void processSection(const void *, unsigned len);