commit a1c1245ef75f79fd5c4bbec96eb466f3e18041dd
parent 0f4d5294adfa180511f4087334dffa37c5cf6558
Author: Joris Vink <joris@coders.se>
Date:   Tue, 15 Oct 2019 15:53:08 +0200
don't call Py_DECREF on list in configure
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/src/python.c b/src/python.c
@@ -1366,7 +1366,6 @@ python_runtime_configure(void *addr, int argc, char **argv)
 	PyErr_Clear();
 	pyret = PyObject_Call(callable, args, NULL);
 	Py_DECREF(args);
-	Py_DECREF(list);
 
 	if (pyret == NULL) {
 		kore_python_log_error("python_runtime_configure");