diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-07-17 20:41:27 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-07-18 10:56:36 +0200 |
commit | 1291a6f9684144d2a1902ffeec3f9ac361c06efb (patch) | |
tree | f1509ec6e32a7a6ab322450168e162719dee631b /sd/source | |
parent | e031303dc72560ca8aa0ad99e632ec25372628ea (diff) |
cid#1448529 Use after free
Change-Id: I5bc3a85b7319c52e3b5d1a7e7dffcbe23cdf653c
Reviewed-on: https://gerrit.libreoffice.org/75814
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sd/source')
-rw-r--r-- | sd/source/ui/view/sdview4.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/view/sdview4.cxx b/sd/source/ui/view/sdview4.cxx index 9d4bc87a1967..cb50639b2593 100644 --- a/sd/source/ui/view/sdview4.cxx +++ b/sd/source/ui/view/sdview4.cxx @@ -559,8 +559,8 @@ IMPL_LINK_NOARG(View, DropInsertFileHdl, Timer *, void) nOptions |= SdrInsertFlags::DONTMARK; } - InsertObjectAtView( pOleObj, *GetSdrPageView(), nOptions ); - pOleObj->SetLogicRect( aRect ); + if (InsertObjectAtView( pOleObj, *GetSdrPageView(), nOptions )) + pOleObj->SetLogicRect( aRect ); aSz.Width = aRect.GetWidth(); aSz.Height = aRect.GetHeight(); xObj->setVisualAreaSize( nAspect,aSz ); |