kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

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:
src/python.c | 1-
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");