diff options
author | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 17:36:50 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2016-08-18 21:08:40 +0100 |
commit | 4819843badc7536370052320ff5fb9cd934254e1 (patch) | |
tree | 02c18f00bbd033a79a132e8c57f3039a2477801a /comphelper | |
parent | ffa4d16c798fecee0e268e0cfe02e488d7b971b0 (diff) |
coverity#1371448 Uninitialized pointer field
Change-Id: Iedfa017dffa4681a9d698108b5dbc7388637c611
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/asyncnotification.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/asyncnotification.cxx b/comphelper/source/misc/asyncnotification.cxx index e13be286a5dd..9267444d6696 100644 --- a/comphelper/source/misc/asyncnotification.cxx +++ b/comphelper/source/misc/asyncnotification.cxx @@ -71,7 +71,6 @@ namespace comphelper } }; - struct EventNotifierImpl { ::osl::Mutex aMutex; @@ -83,7 +82,8 @@ namespace comphelper std::shared_ptr<AsyncEventNotifierAutoJoin> pKeepThisAlive; EventNotifierImpl() - :bTerminate( false ) + : bTerminate(false) + , name(nullptr) { } }; |