1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

OCC22403 Avoid long recursion in the method Transfer_Binder::CutResult

This commit is contained in:
MSV 2011-04-28 15:37:01 +00:00 committed by bugmaster
parent 9230430c0b
commit 97e23d5542

View File

@ -61,7 +61,7 @@ void Transfer_Binder::AddResult (const Handle(Transfer_Binder)& next)
if (thenextr.IsNull())
thenextr = next;
else {
//Modification of requrcive to cycle
//Modification of recursive to cycle
Handle(Transfer_Binder) theBinder = thenextr;
while( theBinder != next ) {
if( theBinder->NextResult().IsNull() ) {
@ -72,7 +72,7 @@ void Transfer_Binder::AddResult (const Handle(Transfer_Binder)& next)
theBinder = theBinder->NextResult();
}
}
//former requrcive
//former recursive
// if (thenextr.IsNull()) thenextr = next;
// else if (thenextr == next) return;
// else thenextr->AddResult (next);
@ -87,7 +87,16 @@ void Transfer_Binder::CutResult (const Handle(Transfer_Binder)& next)
{
if (thenextr.IsNull()) return;
if (thenextr == next) thenextr.Nullify();
else thenextr->CutResult (next);
//else thenextr->CutResult (next);
else {
Handle(Transfer_Binder) currBinder = thenextr, currNext;
while( !( (currNext = currBinder->NextResult()) == next ) ) {
if( currNext.IsNull() )
return;
currBinder = currNext;
}
currBinder->CutResult(next);
}
}
//=======================================================================