diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 09:35:45 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 11:36:24 +0000 |
commit | 59b01ca79a9bc730714736ed32ac7f3780ec1cae (patch) | |
tree | a1404199fc3e0983ec5d65688cdce4095eaaf9a1 /svl/unx | |
parent | 71286a6aec08481cf18bfaae0c60efa386557eaf (diff) |
coverity#1079292 Uninitialized pointer field
Change-Id: Ic78aa75bccda1f63d97eb8489d5d64c936c37b16
Diffstat (limited to 'svl/unx')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx index 87cd7f083b96..cecb617479f2 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -88,7 +88,12 @@ const OUString DdeConnection::GetTopicName() } DdeTransaction::DdeTransaction( DdeConnection& rConnection, const OUString&, long ) - : rDde( rConnection ) + : rDde(rConnection) + , pName(NULL) + , nType(0) + , nId(0) + , nTime(0) + , bBusy(false) { } |