From 86cc80f67f0912fb77db90b0f2e3675af1237dc0 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Tue, 28 May 2013 19:53:14 +0900 Subject: [PATCH] Patch from Lorenzo to fix previous incomplete patch. --- lib/srfi/18/threads.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/srfi/18/threads.c b/lib/srfi/18/threads.c index b9a4a1e3..eeb9b925 100644 --- a/lib/srfi/18/threads.c +++ b/lib/srfi/18/threads.c @@ -97,6 +97,7 @@ sexp sexp_make_thread (sexp ctx, sexp self, sexp_sint_t n, sexp thunk, sexp name sexp_context_top(res) = 4; sexp_context_last_fp(res) = 0; sexp_context_dk(res) = sexp_make_vector(res, SEXP_FOUR, SEXP_FALSE); + sexp_vector_set(sexp_context_dk(res), SEXP_ZERO, SEXP_ZERO); sexp_gc_release1(ctx); return res; }