diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-10-31 12:29:06 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-10-31 17:31:08 +0100 |
commit | 3adfa69d85fd6600ad34b683f2d99900331cf2fa (patch) | |
tree | 79eb6648c882d69b125ac933dc6c4eee7a92666e /sc | |
parent | 20bca05a8e5a07c21451e4c62064d1a5680611d9 (diff) |
crashtesting: null deref on import of fdo64646-4.xls
Change-Id: Ie9d3e06a713660124148362f97f0f9dbe45f69bc
Reviewed-on: https://gerrit.libreoffice.org/81844
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/xcl97/XclImpChangeTrack.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/xcl97/XclImpChangeTrack.cxx b/sc/source/filter/xcl97/XclImpChangeTrack.cxx index 3461652949f2..615d82ffa4e7 100644 --- a/sc/source/filter/xcl97/XclImpChangeTrack.cxx +++ b/sc/source/filter/xcl97/XclImpChangeTrack.cxx @@ -105,7 +105,7 @@ void XclImpChangeTrack::DoInsertRange( const ScRange& rRange, bool bEndOfList ) void XclImpChangeTrack::DoDeleteRange( const ScRange& rRange ) { sal_uLong nFirst, nLast; - pChangeTrack->AppendDeleteRange( rRange, nullptr, nFirst, nLast ); + pChangeTrack->AppendDeleteRange( rRange, &GetDoc() , nFirst, nLast ); DoAcceptRejectAction( nFirst, nLast ); } |