From d1acb301c191bcf7a5421a7637cbfab0d7167a81 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 20 Nov 2015 02:12:11 -0500 Subject: [PATCH] Initialize mark for load_varargs --- include/cyclone/runtime.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/cyclone/runtime.h b/include/cyclone/runtime.h index e857b586..240abbaf 100644 --- a/include/cyclone/runtime.h +++ b/include/cyclone/runtime.h @@ -72,6 +72,7 @@ object Cyc_global_set(void *thd, object *glo, object value); } else { \ tmp = arg_var; \ } \ + var[i].hdr.mark = gc_color_red; \ var[i].tag = cons_tag; \ var[i].cons_car = tmp; \ var[i].cons_cdr = (i == (count-1)) ? nil : &var[i + 1]; \