diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-01-07 09:24:27 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-01-07 12:33:12 +0100 |
commit | 71be70b16b37fb3c1b6331ab3581300556ecc7aa (patch) | |
tree | 7b9867b952cc209932fabf7a9ad820f4a8daad8c /lotuswordpro | |
parent | 260a2036d688afddc6e6e477764e1196cc915194 (diff) |
ofz#43376 Null-dereference
Change-Id: I57f67465e4f8ca6fc6bd47d7b095e9b470d9d2c3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128101
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'lotuswordpro')
-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 |