diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 09:34:04 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 11:36:23 +0000 |
commit | 71286a6aec08481cf18bfaae0c60efa386557eaf (patch) | |
tree | b242bd4095c0bb198410ce5d00588db22d9e38b7 /svl/unx | |
parent | 42c2dd5ec06a2b2a52ca5d2e9e40d075c747f6d9 (diff) |
coverity#1079291 Uninitialized pointer field
Change-Id: I75ce5ab5583ed3e4009582bae531db24b66be9f8
Diffstat (limited to 'svl/unx')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx index 2e03c0862105..87cd7f083b96 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -194,8 +194,11 @@ const OUString DdeTopic::GetName() const } DdeService::DdeService( const OUString& ) + : pSysTopic(NULL) + , pName(NULL) + , pConv(NULL) + , nStatus(0) { - nStatus = 0; } OUString DdeService::Topics() |