Fixing memory leak in opfunc_throw.

This commit is contained in:
Ruben Ayrapetyan
2014-09-05 20:28:02 +04:00
parent 5a9d4563ec
commit c5dd81cf76
2 changed files with 7 additions and 3 deletions
+6 -2
View File
@@ -60,6 +60,10 @@ main( int __unused argc,
init_int( test_program);
return run_int() ? 0
: 1;
bool is_ok = run_int();
serializer_free ();
mem_finalize (false);
return (is_ok ? 0 : 1);
} /* main */