mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0028034: Application Framework - stack overflow in LDOM destructor
This commit is contained in:
parent
f73c584ceb
commit
579f2938a8
@ -99,7 +99,14 @@ void * LDOM_MemManager::MemBlock::AllocateAndCheck
|
||||
LDOM_MemManager::MemBlock::~MemBlock ()
|
||||
{
|
||||
delete [] myBlock;
|
||||
delete myNext;
|
||||
MemBlock* aNext = myNext;
|
||||
while (aNext)
|
||||
{
|
||||
MemBlock* aNextNext = aNext->myNext;
|
||||
aNext->myNext = 0;
|
||||
delete aNext;
|
||||
aNext = aNextNext;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
|
Loading…
x
Reference in New Issue
Block a user