summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/frame.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-04-24 20:36:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2019-04-25 09:31:30 +0200
commitee8c90c469c2caeca24a9621847ec796d011f3bf (patch)
tree002716d37b926aa1412fdb05b97ff0ea74068912 /sw/source/core/inc/frame.hxx
parent40f257e6df97ef9aedda0c8d2e4e8f410f074563 (diff)
ubsan: use after free
Change-Id: I1a3396d434f6cc5bb615bcb2fe06a819bc11c013 Reviewed-on: https://gerrit.libreoffice.org/71256 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sw/source/core/inc/frame.hxx')
-rw-r--r--sw/source/core/inc/frame.hxx15
1 files changed, 2 insertions, 13 deletions
diff --git a/sw/source/core/inc/frame.hxx b/sw/source/core/inc/frame.hxx
index 6e0d653690c4..ab1047d0348f 100644
--- a/sw/source/core/inc/frame.hxx
+++ b/sw/source/core/inc/frame.hxx
@@ -1237,19 +1237,8 @@ public:
//Flag pFrame for SwFrameDeleteGuard lifetime that we shouldn't delete
//it in e.g. SwSectionFrame::MergeNext etc because we will need it
//again after the SwFrameDeleteGuard dtor
- explicit SwFrameDeleteGuard(SwFrame* pFrame)
- : m_pForbidFrame((pFrame && !pFrame->IsDeleteForbidden()) ?
- pFrame : nullptr)
- {
- if (m_pForbidFrame)
- m_pForbidFrame->ForbidDelete();
- }
-
- ~SwFrameDeleteGuard()
- {
- if (m_pForbidFrame)
- m_pForbidFrame->AllowDelete();
- }
+ explicit SwFrameDeleteGuard(SwFrame* pFrame);
+ ~SwFrameDeleteGuard();
};
typedef long (SwFrame:: *SwFrameGet)() const;