From 0244dcf1725aafafc7d37f729a74b9e4b2d4ed8d Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Sat, 4 Sep 2021 20:14:59 +0200 Subject: Fix assert in sc/undoblk3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit since: commit 0abf2ac27859f1e91a3d183b81948b1fe8f5aca3 Author: Caolán McNamara Date: Wed Sep 16 11:25:25 2020 +0100 AppendContentsIfInRefDoc never passed a null ScDocument* Change-Id: Ia21f8fecdf8a6aea7ea9c6ea4d579c5e53882bbd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/102982 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara Change-Id: Id699c7be3a81b251541f9a46fd3e1149c47f5df9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121642 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- sc/source/ui/undo/undoblk3.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/ui/undo') diff --git a/sc/source/ui/undo/undoblk3.cxx b/sc/source/ui/undo/undoblk3.cxx index 40f57412f960..073035be799b 100644 --- a/sc/source/ui/undo/undoblk3.cxx +++ b/sc/source/ui/undo/undoblk3.cxx @@ -1286,7 +1286,7 @@ pRedoDoc ( std::move(pNewRedoDoc) ), aRange ( aMarkRange ), bMulti ( bNewMulti ) { - assert(pUndoDoc && pUndoDoc); + assert(pUndoDoc && pRedoDoc); SetChangeTrack(); } -- cgit