1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0022611: Memory leak in expression interpreter

This commit is contained in:
OAN 2011-10-21 15:53:47 +00:00 committed by bugmaster
parent 1709df61a8
commit cbc651403a

View File

@ -28,14 +28,14 @@ Standard_Boolean ExprIntrp::Parse(const Handle(ExprIntrp_Generator)& gen, const
try { try {
OCC_CATCH_SIGNALS OCC_CATCH_SIGNALS
while (kerror!=0) { while (kerror!=0) {
kerror = ExprIntrpparse(); kerror = ExprIntrpparse();
} }
ExprIntrp_stop_string();
return Standard_True; return Standard_True;
} }
catch (Standard_Failure) { catch (Standard_Failure) {}
return Standard_False;
}
} }
ExprIntrp_stop_string();
return Standard_False; return Standard_False;
} }