From 898dc8978b546c3c67a5678cc6101643b160d710 Mon Sep 17 00:00:00 2001 From: Stephen Dolan Date: Thu, 9 May 2013 11:30:49 +0100 Subject: [PATCH] Add a redundant intialisation to squash a gcc warning. --- execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/execute.c b/execute.c index ddca19ce..7deeb0ae 100644 --- a/execute.c +++ b/execute.c @@ -168,7 +168,7 @@ jv jq_next(jq_state *jq) { dump_operation(frame_current_bytecode(&jq->frame_stk), pc); printf("\t"); const struct opcode_description* opdesc = opcode_describe(opcode); - data_stk_elem* param; + data_stk_elem* param = 0; int stack_in = opdesc->stack_in; if (stack_in == -1) stack_in = pc[1]; for (int i=0; i