Kaydet (Commit) 6a03b8ba authored tarafından Dennis P. Francis's avatar Dennis P. Francis Kaydeden (comit) Eike Rathke

tdf#93392 leak when linking to external html data file with auto update

Change-Id: I32d96b945ad0c2a0505418a0841156600570b301
Reviewed-on: https://gerrit.libreoffice.org/17757Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarEike Rathke <erack@redhat.com>
Tested-by: 's avatarEike Rathke <erack@redhat.com>
üst 9bb2c28a
...@@ -616,7 +616,11 @@ ScEEParser::ScEEParser( EditEngine* pEditP ) : ...@@ -616,7 +616,11 @@ ScEEParser::ScEEParser( EditEngine* pEditP ) :
ScEEParser::~ScEEParser() ScEEParser::~ScEEParser()
{ {
delete pActEntry; delete pActEntry;
if ( !maList.empty() ) maList.clear(); while ( !maList.empty() )
{
delete maList.back();
maList.pop_back();
}
// Don't delete Pool until the lists have been deleted // Don't delete Pool until the lists have been deleted
pPool->SetSecondaryPool( NULL ); pPool->SetSecondaryPool( NULL );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment