From 6f1ad343452d831427e49a8ac4ae05f40f35c03e Mon Sep 17 00:00:00 2001 From: "C. Guy Yarvin" Date: Tue, 7 Jan 2014 10:43:50 -0800 Subject: [PATCH] Fix interrupt crash. --- v/loop.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/v/loop.c b/v/loop.c index e53762d3a5..1c0aafdb33 100644 --- a/v/loop.c +++ b/v/loop.c @@ -341,8 +341,8 @@ _lo_soft(u2_reck* rec_u, c3_w sec_w, u2_funk fun_f, u2_noun arg) u2z(arg); tax = u2_rl_take(u2_Wire, tax); - mok = u2_dc("mook", 2, tax); u2_wire_tax(u2_Wire) = u2_nul; + mok = u2_dc("mook", 2, tax); // other ugly disgusting cleanups { @@ -364,6 +364,7 @@ _lo_soft(u2_reck* rec_u, c3_w sec_w, u2_funk fun_f, u2_noun arg) } rop = u2nc(pre, u2k(u2t(mok))); u2z(mok); + fprintf(stderr, "error computed\r\n"); return rop; }