[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.3' - sc/source

Jan Holesovsky kendy at collabora.com
Wed May 17 13:13:02 UTC 2017


 sc/source/ui/docshell/docsh4.cxx |    2 ++
 sc/source/ui/undo/undocell.cxx   |    2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)

New commits:
commit ed1123a9284b2230d26ed114c87df9f4d28eea07
Author: Jan Holesovsky <kendy at collabora.com>
Date:   Wed May 17 15:08:25 2017 +0200

    sc lok: Don't crash on comment undo.
    
    Change-Id: I3b8686e2d52359de2d99413e63d4a424ba1439d1
    Reviewed-on: https://gerrit.libreoffice.org/37709
    Reviewed-by: Aron Budea <aron.budea at collabora.com>
    Tested-by: Aron Budea <aron.budea at collabora.com>

diff --git a/sc/source/ui/docshell/docsh4.cxx b/sc/source/ui/docshell/docsh4.cxx
index ef4b9ef4a9c6..0bc4581359c7 100644
--- a/sc/source/ui/docshell/docsh4.cxx
+++ b/sc/source/ui/docshell/docsh4.cxx
@@ -2254,8 +2254,10 @@ void ScDocShell::LOKCommentNotify(LOKCommentNotificationType nType, const ScDocu
                                (nType == LOKCommentNotificationType::Remove ? "Remove" :
                                 (nType == LOKCommentNotificationType::Modify ? "Modify" : "???"))));
 
+    assert(pNote);
     aAnnotation.put("id", pNote->GetId());
     aAnnotation.put("tab", rPos.Tab());
+
     if (nType != LOKCommentNotificationType::Remove && pNote)
     {
         aAnnotation.put("author", pNote->GetAuthor());
diff --git a/sc/source/ui/undo/undocell.cxx b/sc/source/ui/undo/undocell.cxx
index 44a56627b214..2cc72dd025ae 100644
--- a/sc/source/ui/undo/undocell.cxx
+++ b/sc/source/ui/undo/undocell.cxx
@@ -805,7 +805,7 @@ void ScUndoReplaceNote::DoRemoveNote( const ScNoteData& rNoteData )
                 caption object from the drawing layer while deleting pNote
                 (removing the caption is done by a drawing undo action). */
             pNote->ForgetCaption();
-            ScDocShell::LOKCommentNotify(LOKCommentNotificationType::Remove, &rDoc, maPos, nullptr);
+            ScDocShell::LOKCommentNotify(LOKCommentNotificationType::Remove, &rDoc, maPos, pNote);
             delete pNote;
         }
     }


More information about the Libreoffice-commits mailing list