From 59b01ca79a9bc730714736ed32ac7f3780ec1cae Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 10 Mar 2014 09:35:45 +0000 Subject: coverity#1079292 Uninitialized pointer field Change-Id: Ic78aa75bccda1f63d97eb8489d5d64c936c37b16 --- svl/unx/source/svdde/ddedummy.cxx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'svl/unx/source/svdde/ddedummy.cxx') 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) { } -- cgit