summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--compiler.c2
-rw-r--r--vm.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/compiler.c b/compiler.c
index 6911477..43ad9da 100644
--- a/compiler.c
+++ b/compiler.c
@@ -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;
}
diff --git a/vm.c b/vm.c
index 8512f8c..16bf6c5 100644
--- a/vm.c
+++ b/vm.c
@@ -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;
}