diff options
author | Caolán McNamara <caolanm@redhat.com> | 2022-06-21 08:42:54 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2022-06-21 10:40:32 +0200 |
commit | 3f04d692141714259a4c4f1060213cd43804d1db (patch) | |
tree | 6698043fef1ba37164fa979d6a6ead5c362cf808 | |
parent | 8a5eff74fea46294fb15a2328e59214d11b8d52b (diff) |
cid#1506304 Uncaught exception
Change-Id: Iaf2563edd5ec038d50c10cd5207eb40339bbb260
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/136206
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | sc/source/core/tool/scmatrix.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/tool/scmatrix.cxx b/sc/source/core/tool/scmatrix.cxx index 9f6331dd85ad..1cc339175c9e 100644 --- a/sc/source/core/tool/scmatrix.cxx +++ b/sc/source/core/tool/scmatrix.cxx @@ -398,7 +398,7 @@ ScMatrixImpl::~ScMatrixImpl() void ScMatrixImpl::Clear() { - maMat.clear(); + suppress_fun_call_w_exception(maMat.clear()); maMatFlag.clear(); } |