From fd87e62ec0c4bdd37e0921f6ff926a3a77269500 Mon Sep 17 00:00:00 2001 From: Alex Shinn Date: Sat, 21 Jul 2012 17:36:35 +0900 Subject: [PATCH] need to initialize thread timeout flag to false --- sexp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sexp.c b/sexp.c index 8598bbb1..65be192c 100644 --- a/sexp.c +++ b/sexp.c @@ -458,6 +458,7 @@ sexp sexp_make_context (sexp ctx, size_t size, size_t max_size) { sexp_context_saves(res) = NULL; sexp_context_params(res) = SEXP_NULL; sexp_context_tracep(res) = 0; + sexp_context_timeoutp(res) = 0; sexp_context_tailp(res) = 1; #if SEXP_USE_GREEN_THREADS sexp_context_event(res) = SEXP_FALSE;