diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2017-11-18 22:43:41 +0900 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-12-19 07:56:37 +0100 |
commit | 28e1f3c77fe19091cddf527f7758386dddcdad34 (patch) | |
tree | 5bed1e92de8b2ace3e70a3db4bac086409dff99d /svl/unx | |
parent | 67bd9382aa17594cb7a6d1fad304ed9f275941b1 (diff) |
svl: Fix possible memleak at deleting DdeService
Change-Id: Ie10d4199999c4331af29dee2a8d98132488caa6e
Reviewed-on: https://gerrit.libreoffice.org/44909
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
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 856d79dc5db2..e934b865a857 100644 --- a/svl/unx/source/svdde/ddedummy.cxx +++ b/svl/unx/source/svdde/ddedummy.cxx @@ -20,6 +20,10 @@ #include <svl/svdde.hxx> #include <rtl/instance.hxx> +struct Conversation +{ +}; + struct DdeDataImp { }; @@ -202,7 +206,6 @@ const OUString DdeTopic::GetName() const DdeService::DdeService( const OUString& ) : pSysTopic(nullptr) , pName(nullptr) - , pConv(nullptr) , nStatus(0) { } |