summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Stearn <mathias@10gen.com>2011-03-03 19:29:25 -0500
committerEliot Horowitz <eliot@10gen.com>2011-03-03 21:56:55 -0500
commit87dd5720e48e875487d5fbd78cbe120d5a610973 (patch)
tree859d61a2f2bf41a4f77aef55f1bac700f2f51857
parentb1eb83e61c6358cc9144757f4e9c364cd9c6d1bf (diff)
downloadmongo-87dd5720e48e875487d5fbd78cbe120d5a610973.tar.gz
initialize _recovering 180r1.8.0-rc1
-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);