From 08b82fa3ee915666ef8b60aeb670c38f64553630 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Mon, 15 Feb 2021 10:48:53 +0000 Subject: Revert "ofz#29461 flatten SetAttrSet recursion" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Compress deletes nodes so the flat list becomes invalid This reverts commit d1b3571fba171279d70ccaa0dfec1871f04439af. Change-Id: I70e52ac3988493a283ca83121bd2e4a67db6f5ed Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110901 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- editeng/source/rtf/svxrtf.cxx | 48 ++++++++++++------------------------------- 1 file changed, 13 insertions(+), 35 deletions(-) (limited to 'editeng/source/rtf') diff --git a/editeng/source/rtf/svxrtf.cxx b/editeng/source/rtf/svxrtf.cxx index 7c1d885323e3..17ef94553ec5 100644 --- a/editeng/source/rtf/svxrtf.cxx +++ b/editeng/source/rtf/svxrtf.cxx @@ -848,42 +848,14 @@ void SvxRTFParser::SetAllAttrOfStk() // end all Attr. and set it into doc for (size_t n = m_AttrSetList.size(); n; ) { auto const& pStkSet = m_AttrSetList[--n]; - - /* - ofz#29461 SetAttrSet recursively calls SetAttrSet on pStkSet's - m_pChildList. The recurse depth can grow sufficiently to trigger - asan. - - So breadth-first iterate through the nodes and make a flat vector of - them which can be iterated through linearly - */ - auto bfs = pStkSet->GetBreadthFirstList(); - for (auto it = bfs.begin(); it != bfs.end(); ++it) - { - SvxRTFItemStackType* pNode = *it; - SetAttrSet(*pNode, false); - } - - /* - ofz#13491 SvxRTFItemStackType dtor recursively calls the dtor of its - m_pChildList. The recurse depth can grow sufficiently to trigger - asan. - - iterate through flat-view of those nodes in order of most distant - from root first and release them linearly - */ - for (auto it = bfs.rbegin(); it != bfs.rend(); ++it) - { - SvxRTFItemStackType* pNode = *it; - pNode->m_pChildList.reset(); - } - + SetAttrSet( *pStkSet ); + pStkSet->DropChildList(); m_AttrSetList.pop_back(); } } // sets all the attributes that are different from the current -void SvxRTFParser::SetAttrSet(SvxRTFItemStackType &rSet, bool bRecurse) +void SvxRTFParser::SetAttrSet( SvxRTFItemStackType &rSet ) { // Was DefTab never read? then set to default if( !bIsSetDfltTab ) @@ -895,7 +867,7 @@ void SvxRTFParser::SetAttrSet(SvxRTFItemStackType &rSet, bool bRecurse) SetAttrInDoc( rSet ); // then process all the children - if (bRecurse && rSet.m_pChildList) + if (rSet.m_pChildList) for (size_t n = 0; n < rSet.m_pChildList->size(); ++n) SetAttrSet( *(*rSet.m_pChildList)[ n ] ); } @@ -991,10 +963,12 @@ SvxRTFItemStackType::SvxRTFItemStackType( distant from root first and release their children linearly */ -std::vector SvxRTFItemStackType::GetBreadthFirstList() +void SvxRTFItemStackType::DropChildList() { - std::vector bfs; + if (!m_pChildList || m_pChildList->empty()) + return; + std::vector bfs; std::queue aQueue; aQueue.push(this); @@ -1010,7 +984,11 @@ std::vector SvxRTFItemStackType::GetBreadthFirstList() } } - return bfs; + for (auto it = bfs.rbegin(); it != bfs.rend(); ++it) + { + SvxRTFItemStackType* pNode = *it; + pNode->m_pChildList.reset(); + } } SvxRTFItemStackType::~SvxRTFItemStackType() -- cgit