diff options
author | Fyodor Yemelyanenko <fyodor_e@hotmail.com> | 2018-01-10 10:27:08 +1000 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2018-02-15 09:56:14 +0100 |
commit | aac475436271ddeabf6d9a4c3984ba77accf56ce (patch) | |
tree | 24ba9ad20a168a2a75b8bb69acb9762357b54815 /editeng/source/misc/svxacorr.cxx | |
parent | 798a989937a4acf7830588637f8c3902b4d985d8 (diff) |
tdf#83260 editeng sw: avoid accessing dead nodes in AutoCorrect
When change tracking is ON (Redlining) and Edit->Change Tracking->Show==OFF
Autocorrection and Undo operations crash LO.
Change-Id: I616f2de143b78fc83483a6589cfa1dd1ab61675a
Reviewed-on: https://gerrit.libreoffice.org/47686
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'editeng/source/misc/svxacorr.cxx')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index 46c22fc84c49..1119879f178c 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -1382,7 +1382,7 @@ void SvxAutoCorrect::DoAutoCorrect( SvxAutoCorrDoc& rDoc, const OUString& rTxt, if( IsAutoCorrFlag( ChgToEnEmDash ) ) { - FnChgToEnEmDash( rDoc, rTxt, nCapLttrPos, nEnd, eLang ); + FnChgToEnEmDash( rDoc, aPara, nCapLttrPos, nEnd, eLang ); } } break; |