diff options
author | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-03-16 16:26:17 +0100 |
---|---|---|
committer | Xisco Fauli <xiscofauli@libreoffice.org> | 2023-03-16 19:12:20 +0000 |
commit | 0c9fafe07df10d541251f494b28fcb89e5387cda (patch) | |
tree | c82c72bf80e9e2b22ce5acc83e0c79894e93380d /sw/source/uibase/app | |
parent | fde1946074aaa3db23f7fcb5bdfe87f1e75ca7e6 (diff) |
sw: fix null dereference
See https://crashreport.libreoffice.org/stats/signature/SfxDispatcher::ExecuteList(unsigned%20short,SfxCallMode,std::initializer_list%3CSfxPoolItem%20const%20*%3E,std::initializer_list%3CSfxPoolItem%20const%20*%3E)
Change-Id: I7f5471f003798f260d9d015782bd2a798baa22d2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/148999
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
Diffstat (limited to 'sw/source/uibase/app')
-rw-r--r-- | sw/source/uibase/app/docsh2.cxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/sw/source/uibase/app/docsh2.cxx b/sw/source/uibase/app/docsh2.cxx index 3cbd7673a6b7..8f5c4e8d40b8 100644 --- a/sw/source/uibase/app/docsh2.cxx +++ b/sw/source/uibase/app/docsh2.cxx @@ -1197,11 +1197,12 @@ void SwDocShell::Execute(SfxRequest& rReq) // Ok. I did my best. break; - SfxStringItem aApp(SID_DOC_SERVICE, "com.sun.star.text.TextDocument"); - SfxStringItem aTarget(SID_TARGETNAME, "_blank"); - pViewShell->GetDispatcher()->ExecuteList(SID_OPENDOC, - SfxCallMode::API|SfxCallMode::SYNCHRON, - { &aApp, &aTarget }); + if (SfxDispatcher* pDispatch = pViewShell->GetDispatcher()) + { + SfxStringItem aApp(SID_DOC_SERVICE, "com.sun.star.text.TextDocument"); + SfxStringItem aTarget(SID_TARGETNAME, "_blank"); + pDispatch->ExecuteList(SID_OPENDOC, SfxCallMode::API|SfxCallMode::SYNCHRON, { &aApp, &aTarget }); + } } break; case SID_CLASSIFICATION_APPLY: |