diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 09:38:37 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 11:36:24 +0000 |
commit | 29842e7080b201b729fa3d24b0ade24e95d49cf9 (patch) | |
tree | 6ae30b84d52ebf97d1ea5ad22bcab36d8ce8114b /svl/unx/source/svdde | |
parent | 55b30b150b06c5e584dbb0d77bffa780f8a54995 (diff) |
coverity#1079294 Uninitialized pointer field
Change-Id: I3605699642a1fb5e42a8ea7347bc0009e8f9141a
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 8e3d30df6941..acb6380a3024 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -286,6 +286,10 @@ DdeServices& DdeService::GetServices() } DdeItem::DdeItem( const OUString& ) + : pName(NULL) + , pMyTopic(NULL) + , pImpData(NULL) + , nType(0) { } |