From f859d0d7fd8feb45b6d9a3254cf58156e38fa2fa Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Mon, 5 Sep 2016 13:07:48 -0700 Subject: [PATCH] move declaration to top of the function to appease the c89 gods --- Modules/_hotshot.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/_hotshot.c b/Modules/_hotshot.c index da30f3bdc32..33cd38da2ff 100644 --- a/Modules/_hotshot.c +++ b/Modules/_hotshot.c @@ -340,6 +340,7 @@ unpack_add_info(LogReaderObject *self) { PyObject *key = NULL; PyObject *value = NULL; + PyObject *list; int err; err = unpack_string(self, &key); @@ -348,7 +349,7 @@ unpack_add_info(LogReaderObject *self) err = unpack_string(self, &value); if (err) goto finally; - PyObject *list = PyDict_GetItem(self->info, key); + list = PyDict_GetItem(self->info, key); if (list == NULL) { list = PyList_New(0); if (list == NULL) {