Assertion errors are now really not catchable anymore.
[INTERPRETER] * BUG: Assertion errors are now really not catchable anymore.
This commit is contained in:
parent
a576b687db
commit
fc41ff0b23
1 changed files with 4 additions and 0 deletions
|
@ -934,7 +934,11 @@ void EXEC_function_loop()
|
||||||
DEBUG.Main(TRUE);
|
DEBUG.Main(TRUE);
|
||||||
|
|
||||||
if (ERROR->info.code == E_ASSERT)
|
if (ERROR->info.code == E_ASSERT)
|
||||||
|
{
|
||||||
|
EP = NULL;
|
||||||
|
EC = NULL;
|
||||||
goto __IGNORE_TRY_CATCH;
|
goto __IGNORE_TRY_CATCH;
|
||||||
|
}
|
||||||
|
|
||||||
// Are we in a TRY?
|
// Are we in a TRY?
|
||||||
if (EP && EC)
|
if (EP && EC)
|
||||||
|
|
Loading…
Reference in a new issue