diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2020-05-11 13:03:24 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-05-12 10:22:11 +0200 |
commit | 3466488ef22752c8f6f47f7b8f1dac5cc0cb27a2 (patch) | |
tree | 3e43531ed4a7a88d86af67128b778a6b80170539 /sc | |
parent | ef4a739d94800426d205fb6e2cb5c2813771dfd3 (diff) |
tdf#132939: avoid crash when uninitialized FilterDescriptor
See bt:
https://bugs.documentfoundation.org/attachment.cgi?id=160656
Change-Id: Ifacce7d39878e1b1d119aa878e7280eb3c9c2228
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93959
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/unoobj/cellsuno.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/unoobj/cellsuno.cxx b/sc/source/ui/unoobj/cellsuno.cxx index 8a81f814a7e6..856736b275b1 100644 --- a/sc/source/ui/unoobj/cellsuno.cxx +++ b/sc/source/ui/unoobj/cellsuno.cxx @@ -5411,6 +5411,8 @@ void SAL_CALL ScCellRangeObj::filter( const uno::Reference<sheet::XSheetFilterDe { SolarMutexGuard aGuard; + if (!xDescriptor.is()) return; + // This could be theoretically an unknown object, so only use the // public XSheetFilterDescriptor interface to copy the data into a // ScFilterDescriptor object: |