From aa39a7edf704da9c3107456809a8b8b7b6619daa Mon Sep 17 00:00:00 2001 From: Moshe Zadka Date: Mon, 7 Aug 2000 06:34:45 +0000 Subject: Initialized opcode and oparg to silence a gcc -Wall warning. --- Python/ceval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/ceval.c b/Python/ceval.c index 5822a85..9bcb2ad 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -315,8 +315,8 @@ eval_code2(PyCodeObject *co, PyObject *globals, PyObject *locals, int lastopcode = 0; #endif register unsigned char *next_instr; - register int opcode; /* Current opcode */ - register int oparg; /* Current opcode argument, if any */ + register int opcode=0; /* Current opcode */ + register int oparg=0; /* Current opcode argument, if any */ register PyObject **stack_pointer; register enum why_code why; /* Reason for block stack unwind */ register int err; /* Error status -- nonzero if error */ -- cgit v0.12