summaryrefslogtreecommitdiff
path: root/svl/unx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-14 15:48:11 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-14 15:58:25 +0000
commit333402bdc5665749efed5f92fe1c80ff56d58e2f (patch)
tree2c1673d7bc8b9e966a562e62047d6254f47a38d3 /svl/unx
parent7d53f81f0a88afcff0f60bbd066a5645ac2e6a8b (diff)
coverity#708271 Uninitialized pointer field
Change-Id: If6acc11a32b5be1092f0de7c747159ee447edf7c
Diffstat (limited to 'svl/unx')
-rw-r--r--svl/unx/source/svdde/ddedummy.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx
index b848b8f1e6d9..7a986d6eddf8 100644
--- a/svl/unx/source/svdde/ddedummy.cxx
+++ b/svl/unx/source/svdde/ddedummy.cxx
@@ -295,6 +295,10 @@ DdeItem::DdeItem( const OUString& )
}
DdeItem::DdeItem( const DdeItem& )
+ : pName(NULL)
+ , pMyTopic(NULL)
+ , pImpData(NULL)
+ , nType(0)
{
}