lotuswordpro/source/filter/lwpsdwgrouploaderv0102.cxx | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-)
New commits: commit 71be70b16b37fb3c1b6331ab3581300556ecc7aa Author: Caolán McNamara <[email protected]> AuthorDate: Fri Jan 7 09:24:27 2022 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Jan 7 12:33:12 2022 +0100 ofz#43376 Null-dereference Change-Id: I57f67465e4f8ca6fc6bd47d7b095e9b470d9d2c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128101 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> 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
