From 71286a6aec08481cf18bfaae0c60efa386557eaf Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 10 Mar 2014 09:34:04 +0000 Subject: coverity#1079291 Uninitialized pointer field Change-Id: I75ce5ab5583ed3e4009582bae531db24b66be9f8 --- svl/unx/source/svdde/ddedummy.cxx | 5 ++++- 1 file changed, 4 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 2e03c0862105..87cd7f083b96 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -194,8 +194,11 @@ const OUString DdeTopic::GetName() const } DdeService::DdeService( const OUString& ) + : pSysTopic(NULL) + , pName(NULL) + , pConv(NULL) + , nStatus(0) { - nStatus = 0; } OUString DdeService::Topics() -- cgit