RunContext: Uninit Member

Fix an uninitialized member in `RunContext`.

Found with coverity in a downstream project.
This commit is contained in:
Axel Huebl 2019-01-07 18:55:33 +01:00 committed by Martin Hořeňovský
parent d1e7344f16
commit 47602ac556
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ namespace Catch {
TestRunInfo m_runInfo;
IMutableContext& m_context;
TestCase const* m_activeTestCase = nullptr;
ITracker* m_testCaseTracker;
ITracker* m_testCaseTracker = nullptr;
Option<AssertionResult> m_lastResult;
IConfigPtr m_config;