From 5a97caa4cadfa6575656ab2b10d6601e496b4514 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Fri, 11 Jul 2008 19:24:37 -0600 Subject: [PATCH] fix recently-introduced GC safety bug --- src/compile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compile.cpp b/src/compile.cpp index 91c2a7b983..a954959885 100644 --- a/src/compile.cpp +++ b/src/compile.cpp @@ -5107,7 +5107,7 @@ compile(MyThread* t, object method) if (methodVirtual(t, method)) { classVtable(t, methodClass(t, method), methodOffset(t, method)) - = &singletonValue(t, compiled, 0); + = &singletonValue(t, methodCompiled(t, method), 0); } } }