summaryrefslogtreecommitdiff
path: root/svl/unx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-14 15:49:20 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-14 15:58:25 +0000
commit1b26ba2307d24341cf73cf6fc4865b120eaf05b1 (patch)
treef6a89ced706f868291e782cd67b0f5099d0e127b /svl/unx
parent333402bdc5665749efed5f92fe1c80ff56d58e2f (diff)
coverity#708269 Uninitialized pointer field
Change-Id: If92b091d06e6de6f137d38a9fa28d4c8604b368c
Diffstat (limited to 'svl/unx')
-rw-r--r--svl/unx/source/svdde/ddedummy.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx
index 7a986d6eddf8..69f8a1900b39 100644
--- a/svl/unx/source/svdde/ddedummy.cxx
+++ b/svl/unx/source/svdde/ddedummy.cxx
@@ -21,6 +21,7 @@
#include <rtl/instance.hxx>
DdeData::DdeData()
+ : pImp(NULL)
{
}
@@ -30,10 +31,12 @@ DdeData::DdeData( const OUString& )
}
DdeData::DdeData( const DdeData& )
+ : pImp(NULL)
{
}
DdeData::DdeData( const void*, long, sal_uLong)
+ : pImp(NULL)
{
}