diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-03-25 09:43:13 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-03-25 14:43:03 +0100 |
commit | 2c7a102df90bd051d34fa9100979d1a0d6341576 (patch) | |
tree | 66f6d5be46c04b5375a4e5f42a5afc8b58675b45 /svx | |
parent | 2e28b198007b525ee66b9864677acdd8ff0d85c7 (diff) |
ubsan detect null deref
Change-Id: I78a8c91f2c7493a12f5acb325c3f79efbbfbffcc
Reviewed-on: https://gerrit.libreoffice.org/69650
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r-- | svx/source/dialog/srchdlg.cxx | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/svx/source/dialog/srchdlg.cxx b/svx/source/dialog/srchdlg.cxx index f5a809ed3c5c..a3b74d15dfe7 100644 --- a/svx/source/dialog/srchdlg.cxx +++ b/svx/source/dialog/srchdlg.cxx @@ -340,13 +340,18 @@ SvxSearchDialog::SvxSearchDialog(weld::Window* pParent, SfxChildWindow* pChildWi Construct_Impl(); } -SvxSearchDialog::~SvxSearchDialog() +void SvxSearchDialog::ChildWinDispose() { rBindings.EnterRegistrations(); pSearchController.reset(); pOptionsController.reset(); pFamilyController.reset(); rBindings.LeaveRegistrations(); + SfxModelessDialogController::ChildWinDispose(); +} + +SvxSearchDialog::~SvxSearchDialog() +{ } void SvxSearchDialog::Construct_Impl() |