diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-04-15 16:09:09 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-04-15 18:06:56 +0200 |
commit | db677c854a37031235b0f42b4f4f48560149754f (patch) | |
tree | 98807526d2ecfab29748e6dd16fad4618fa9f367 /sfx2 | |
parent | e58edeb2aab087ec13c6d8fd19e91320a9073a92 (diff) |
tdf#126828 don't crash fetching cmis properties from disposed SfxBaseModel
Change-Id: Ie064632667b40201e0d266c64e3068c4d1983c7d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/92283
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/doc/sfxbasemodel.cxx | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sfx2/source/doc/sfxbasemodel.cxx b/sfx2/source/doc/sfxbasemodel.cxx index 5868deb290f6..36ec8cb7adc4 100644 --- a/sfx2/source/doc/sfxbasemodel.cxx +++ b/sfx2/source/doc/sfxbasemodel.cxx @@ -2460,8 +2460,10 @@ void SAL_CALL SfxBaseModel::notifyDocumentEvent( const OUString&, const Referenc throw lang::NoSupportException("SfxBaseModel controls all the sent notifications itself!" ); } -Sequence< document::CmisProperty > SAL_CALL SfxBaseModel::getCmisProperties() +Sequence<document::CmisProperty> SAL_CALL SfxBaseModel::getCmisProperties() { + if (impl_isDisposed()) + return Sequence<document::CmisProperty>(); return m_pData->m_cmisProperties; } @@ -2599,7 +2601,9 @@ void SAL_CALL SfxBaseModel::checkIn( sal_Bool bIsMajor, const OUString& rMessage uno::Sequence< document::CmisVersion > SAL_CALL SfxBaseModel::getAllVersions( ) { - uno::Sequence< document::CmisVersion > aVersions; + uno::Sequence<document::CmisVersion> aVersions; + if (impl_isDisposed()) + return aVersions; SfxMedium* pMedium = m_pData->m_pObjectShell->GetMedium(); if ( pMedium ) { |