summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage
diff options
context:
space:
mode:
authorGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-10-02 10:20:47 -0400
committerGregory Wlodarek <gregory.wlodarek@mongodb.com>2018-10-02 10:20:47 -0400
commite74ff7028c06686611eb4652a80a212bf14e3757 (patch)
tree2b3f4093aef5d579e8883890dd723b014c68beeb /src/mongo/db/storage
parentf7ddb89c8caf438781de9191d690d03f711b63fe (diff)
downloadmongo-e74ff7028c06686611eb4652a80a212bf14e3757.tar.gz
SERVER-37380 Fix uninitialized scalar field
Diffstat (limited to 'src/mongo/db/storage')
-rw-r--r--src/mongo/db/storage/biggie/biggie_kv_engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/biggie/biggie_kv_engine.h b/src/mongo/db/storage/biggie/biggie_kv_engine.h
index f3d160e608d..9806c310c9e 100644
--- a/src/mongo/db/storage/biggie/biggie_kv_engine.h
+++ b/src/mongo/db/storage/biggie/biggie_kv_engine.h
@@ -152,7 +152,7 @@ public:
private:
std::shared_ptr<void> _catalogInfo;
- int _cachePressureForTest;
+ int _cachePressureForTest = 0;
};
} // namespace biggie
} // namespace mongo