diff options
author | Miklos Vajna <vmiklos@suse.cz> | 2013-06-06 16:35:52 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@suse.cz> | 2013-06-06 16:42:13 +0200 |
commit | 248a63f5d0d09b6e8388192a0fe7332a624e8829 (patch) | |
tree | 8fb395be65df52f3fbf361ee4a66387710e05e73 | |
parent | 7ef1a64bdb8f9afaeb93e7a88219650381e0d323 (diff) |
bnc#382137 DocxAttributeOutput: don't store address of local variable
AttributeOutputBase::TextField() passes the address of its local
variable to WriteExpand(), and DocxAttributeOutput::WriteField_Impl()
stored this. When it was to be used, the variable already went out of
scope, resulting in a crash. Given that SwField is an abstract base
class, the easiest way is to just copy the field and manually delete it
when it's no longer needed.
Change-Id: I9d1fe2485277f1ac21a576d7ff0d05003f0ac8a1
-rw-r--r-- | sw/source/filter/ww8/docxattributeoutput.cxx | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx b/sw/source/filter/ww8/docxattributeoutput.cxx index 5cbf3c6f1e01..bd54f5a06690 100644 --- a/sw/source/filter/ww8/docxattributeoutput.cxx +++ b/sw/source/filter/ww8/docxattributeoutput.cxx @@ -564,6 +564,8 @@ void DocxAttributeOutput::EndRun() // Unknown fields sould be removed too if ( !pIt->bClose || ( pIt->eType == ww::eUNKNOWN ) ) { + if (pIt->pField) + delete pIt->pField; pIt = m_Fields.erase( pIt ); continue; } @@ -598,6 +600,8 @@ void DocxAttributeOutput::EndRun() // Remove the field if no end needs to be written if ( !pIt->bClose ) { + if (pIt->pField) + delete pIt->pField; pIt = m_Fields.erase( pIt ); continue; } @@ -646,6 +650,8 @@ void DocxAttributeOutput::EndRun() while ( m_Fields.begin() != m_Fields.end() ) { EndField_Impl( m_Fields.front( ) ); + if (m_Fields.front().pField) + delete m_Fields.front().pField; m_Fields.erase( m_Fields.begin( ) ); } @@ -3921,7 +3927,8 @@ void DocxAttributeOutput::WriteExpand( const SwField* pFld ) void DocxAttributeOutput::WriteField_Impl( const SwField* pFld, ww::eField eType, const String& rFldCmd, sal_uInt8 nMode ) { struct FieldInfos infos; - infos.pField = pFld; + if (pFld) + infos.pField = pFld->CopyField(); infos.sCmd = rFldCmd; infos.eType = eType; infos.bClose = WRITEFIELD_CLOSE & nMode; |