diff options
-rw-r--r-- | compiler.c | 2 | ||||
-rw-r--r-- | vm.c | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -3602,6 +3602,8 @@ uc_compiler_compile_import(uc_compiler_t *compiler) uc_compiler_syntax_error(compiler, compiler->parser->prev.pos, "Imports may only appear at top level"); + ucv_put(namelist); + return; } @@ -528,7 +528,9 @@ uc_vm_call_function(uc_vm_t *vm, uc_value_t *ctx, uc_value_t *fno, bool mcall, s s = ucv_to_string(vm, arg); uc_vm_raise_exception(vm, EXCEPTION_TYPE, "(%s) is not iterable", s); free(s); + ucv_put(ctx); ucv_put(fno); + ucv_put(ellip); return false; } |