diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:48:11 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:58:25 +0000 |
commit | 333402bdc5665749efed5f92fe1c80ff56d58e2f (patch) | |
tree | 2c1673d7bc8b9e966a562e62047d6254f47a38d3 /svl/unx/source/svdde | |
parent | 7d53f81f0a88afcff0f60bbd066a5645ac2e6a8b (diff) |
coverity#708271 Uninitialized pointer field
Change-Id: If6acc11a32b5be1092f0de7c747159ee447edf7c
Diffstat (limited to 'svl/unx/source/svdde')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 4 |
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) { } |