diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-01-07 09:24:27 +0000 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2022-01-07 13:41:39 +0100 |
commit | 1e5d2dee621776afbc704e7ba9db79adaddc43f3 (patch) | |
tree | 6dbbbfa0ea9207e1a451f4dad2bf39a2e425fd31 /lotuswordpro/source | |
parent | 3399f4d95ec1e685bd48936f1131dd8c860aebf4 (diff) |
ofz#43376 Null-dereference
Change-Id: I57f67465e4f8ca6fc6bd47d7b095e9b470d9d2c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128072
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
Diffstat (limited to 'lotuswordpro/source')
-rw-r--r-- | lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx index 3b8e8accad33..1b73b97a1f4f 100644 --- a/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx +++ b/lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx @@ -373,8 +373,11 @@ XFFrame* LwpSdwGroupLoaderV0102::CreateDrawObject() pRetObjct = CreateDrawGroupObject(); - // set anchor type - pRetObjct->SetAnchorType(enumXFAnchorFrame); + if (pRetObjct) + { + // set anchor type + pRetObjct->SetAnchorType(enumXFAnchorFrame); + } break; } case OT_CHART://fall-through |