summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-03-10 09:37:05 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-03-10 11:36:24 +0000
commit55b30b150b06c5e584dbb0d77bffa780f8a54995 (patch)
treed01d1972ee4847f6c621c23a48b506099563fae0 /svl
parent59b01ca79a9bc730714736ed32ac7f3780ec1cae (diff)
coverity#1079293 Uninitialized pointer field
Change-Id: I20f844b98e922ccd351a28d9b47554c796876d14
Diffstat (limited to 'svl')
-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 cecb617479f2..8e3d30df6941 100644
--- a/svl/unx/source/svdde/ddedummy.cxx
+++ b/svl/unx/source/svdde/ddedummy.cxx
@@ -70,6 +70,9 @@ long DdeConnection::GetError()
}
DdeConnection::DdeConnection( const OUString&, const OUString& )
+ : pService(NULL)
+ , pTopic(NULL)
+ , pImp(NULL)
{
}