From f208df3618f52c11fb97046951a16706af6fc3e3 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Fri, 12 Oct 2012 11:37:56 -0400 Subject: move declaration to top of block --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 2697235..c13436f 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -1402,8 +1402,8 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) TARGET(DUP_TOP_TWO) { PyObject *top = TOP(); - Py_INCREF(top); PyObject *second = SECOND(); + Py_INCREF(top); Py_INCREF(second); STACKADJ(2); SET_TOP(top); -- cgit v0.12