diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:50:46 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-14 15:58:25 +0000 |
commit | 011e153bc4f3d086108e10a5b95ea6614d665d95 (patch) | |
tree | b3244ae0a8dbab16fa43a200f44d72608a9c84fd /svl | |
parent | 1b26ba2307d24341cf73cf6fc4865b120eaf05b1 (diff) |
coverity#708265 Uninitialized pointer field
Change-Id: I48afa08c5e1bb8a615901177e5baed20ea86d28e
Diffstat (limited to 'svl')
-rw-r--r-- | svl/unx/source/svdde/ddedummy.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/svl/unx/source/svdde/ddedummy.cxx b/svl/unx/source/svdde/ddedummy.cxx index 69f8a1900b39..1fca271eb5a4 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -106,6 +106,11 @@ DdeTransaction::DdeTransaction( DdeConnection& rConnection, const OUString&, lon DdeTransaction::DdeTransaction( const DdeTransaction& rTransaction ) : rDde( rTransaction.rDde ) + , pName(NULL) + , nType(0) + , nId(0) + , nTime(0) + , bBusy(false) { } |