summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-10 09:34:04 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-10 11:36:23 +0000
commit71286a6aec08481cf18bfaae0c60efa386557eaf (patch)
treeb242bd4095c0bb198410ce5d00588db22d9e38b7 /svl
parent42c2dd5ec06a2b2a52ca5d2e9e40d075c747f6d9 (diff)
coverity#1079291 Uninitialized pointer field
Change-Id: I75ce5ab5583ed3e4009582bae531db24b66be9f8
Diffstat (limited to 'svl')
-rw-r--r--svl/unx/source/svdde/ddedummy.cxx5
1 files changed, 4 insertions, 1 deletions
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()