From 67cf037da6aff47d88fbe80fa7bc11bfda27f8ce Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Mon, 29 Mar 2010 21:23:13 +0000 Subject: [PATCH] fix chaperone-procedure GC bug svn: r18663 --- src/mzscheme/src/struct.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mzscheme/src/struct.c b/src/mzscheme/src/struct.c index 940250f835..b60db7af6f 100644 --- a/src/mzscheme/src/struct.c +++ b/src/mzscheme/src/struct.c @@ -4788,6 +4788,7 @@ static void register_traversers(void) GC_REG_TRAV(scheme_rt_struct_proc_info, mark_struct_proc_info); GC_REG_TRAV(scheme_chaperone_type, mark_chaperone); + GC_REG_TRAV(scheme_proc_chaperone_type, mark_chaperone); } END_XFORM_SKIP;