summaryrefslogtreecommitdiffstats
path: root/svl/unx/source/svdde
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-10 09:35:45 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-10 11:36:24 +0000
commit59b01ca79a9bc730714736ed32ac7f3780ec1cae (patch)
treea1404199fc3e0983ec5d65688cdce4095eaaf9a1 /svl/unx/source/svdde
parentcoverity#1079291 Uninitialized pointer field (diff)
downloadcore-59b01ca79a9bc730714736ed32ac7f3780ec1cae.tar.gz
core-59b01ca79a9bc730714736ed32ac7f3780ec1cae.zip
coverity#1079292 Uninitialized pointer field
Change-Id: Ic78aa75bccda1f63d97eb8489d5d64c936c37b16
Diffstat (limited to 'svl/unx/source/svdde')
-rw-r--r--svl/unx/source/svdde/ddedummy.cxx7
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)
{
}