summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChenhao Qu <chenhao.qu@mongodb.com>2021-02-24 07:20:14 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-24 07:43:29 +0000
commit7999db7abf18e90648bcb4e293d38e5a616fd5b5 (patch)
treed456a3c3269f2d0425994e807dbcbc890c13c3ad
parent2f92b64ab997e234c2aeb5c1f994588990bab37d (diff)
downloadmongo-7999db7abf18e90648bcb4e293d38e5a616fd5b5.tar.gz
Import wiredtiger: d6ff49e9e06815963e9a198aa5fff7b83a2d2a1b from branch mongodb-5.0
ref: f338e3752c..d6ff49e9e0 for: 4.9.0 WT-7238 Use of constructor initialization list to avoid seg fault
-rw-r--r--src/third_party/wiredtiger/import.data2
-rw-r--r--src/third_party/wiredtiger/test/cppsuite/test_harness/thread_context.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/import.data b/src/third_party/wiredtiger/import.data
index 4234ea2d2f5..4bcc2a8e803 100644
--- a/src/third_party/wiredtiger/import.data
+++ b/src/third_party/wiredtiger/import.data
@@ -2,5 +2,5 @@
"vendor": "wiredtiger",
"github": "wiredtiger/wiredtiger.git",
"branch": "mongodb-5.0",
- "commit": "f338e3752c5bbdb605e27c524c64f0ea0aa98ee9"
+ "commit": "d6ff49e9e06815963e9a198aa5fff7b83a2d2a1b"
}
diff --git a/src/third_party/wiredtiger/test/cppsuite/test_harness/thread_context.h b/src/third_party/wiredtiger/test/cppsuite/test_harness/thread_context.h
index 58d4de14735..4b446b75c1f 100644
--- a/src/third_party/wiredtiger/test/cppsuite/test_harness/thread_context.h
+++ b/src/third_party/wiredtiger/test/cppsuite/test_harness/thread_context.h
@@ -16,9 +16,9 @@ class thread_context {
{
}
- thread_context(thread_operation type) : _running(false), _type(type)
+ thread_context(thread_operation type)
+ : _running(false), _session(nullptr), _thread(nullptr), _type(type)
{
- thread_context(nullptr, {}, type);
}
~thread_context()