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

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