From e46a883f084eb9fe73f4fb14707c3e5a06006e56 Mon Sep 17 00:00:00 2001 From: Klaus Basan Date: Sat, 8 Feb 2014 02:58:52 +0100 Subject: [PATCH] refs #93, initialize all member pointers to nullptr at the top of the constructor, as mentioned by MS in #93 --- src/blackcore/context_network.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/blackcore/context_network.cpp b/src/blackcore/context_network.cpp index f7d6eeadf..115edd3e9 100644 --- a/src/blackcore/context_network.cpp +++ b/src/blackcore/context_network.cpp @@ -24,7 +24,8 @@ namespace BlackCore * Init this context */ CContextNetwork::CContextNetwork(CCoreRuntime *runtime) : - IContextNetwork(runtime), m_network(nullptr) + IContextNetwork(runtime), m_network(nullptr), m_networkManager(nullptr), + m_atcBookingTimer(nullptr), m_dataUpdateTimer(nullptr) { // 1. Init by "network driver"