sc/source/ui/uitest/uiobject.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-)
New commits: commit e203f47774f27e5fc66dc8280643e1955c547eb6 Author: Caolán McNamara <[email protected]> AuthorDate: Sat Jul 11 19:50:33 2020 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Sun Jul 12 12:18:02 2020 +0200 cid#1465252 Dereference null return value Change-Id: I8884218bb93a5684fb8f0754013fa00215bbc002 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98578 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/sc/source/ui/uitest/uiobject.cxx b/sc/source/ui/uitest/uiobject.cxx index a00673b424ed..18609b38af10 100644 --- a/sc/source/ui/uitest/uiobject.cxx +++ b/sc/source/ui/uitest/uiobject.cxx @@ -83,7 +83,9 @@ StringMap ScGridWinUIObject::get_state() ScAddress aPos( mxGridWindow->getViewData()->GetCurX() , mxGridWindow->getViewData()->GetCurY() , mxGridWindow->getViewData()->GetTabNo() ); if ( pDoc->HasNote( aPos ) ) { - aMap["CurrentCellCommentText"] = pDoc->GetNote( aPos )->GetText(); + ScPostIt* pNote = pDoc->GetNote(aPos); + assert(pNote); + aMap["CurrentCellCommentText"] = pNote->GetText(); } ScAppOptions aOpt = SC_MOD()->GetAppOptions(); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
