summaryrefslogtreecommitdiff
path: root/onlineupdate
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-08-11 20:44:19 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-08-11 21:04:41 +0100
commita2c6c2e50054ff6cee70cff936d3682a5b0f5a55 (patch)
treeb9c25cb4fce720807dac9fe4303bd8c64bb4e659 /onlineupdate
parent7305941b150097123eab664f9ec9e5f3909a5c52 (diff)
cppcheck: uninitMemberVar
Change-Id: I78acdab89764a27291ca05b0bb1d448608202208
Diffstat (limited to 'onlineupdate')
-rw-r--r--onlineupdate/source/update/common/updatelogging.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/onlineupdate/source/update/common/updatelogging.cxx b/onlineupdate/source/update/common/updatelogging.cxx
index 4044e26882bc..2f1472ef277d 100644
--- a/onlineupdate/source/update/common/updatelogging.cxx
+++ b/onlineupdate/source/update/common/updatelogging.cxx
@@ -14,7 +14,9 @@
#include "updatelogging.h"
-UpdateLog::UpdateLog() : logFP(nullptr)
+UpdateLog::UpdateLog()
+ : logFP(nullptr)
+ , sourcePath(nullptr)
{
}