mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-05 05:01:36 +00:00
fixed a garbage in python_call
This commit is contained in:
@@ -95,13 +95,9 @@ int uwsgi_python_manage_exceptions(void) {
|
||||
|
||||
PyObject *python_call(PyObject *callable, PyObject *args, int catch, struct wsgi_request *wsgi_req) {
|
||||
|
||||
PyObject *pyret;
|
||||
|
||||
//uwsgi_log("ready to call %p %p\n", callable, args);
|
||||
|
||||
Py_INCREF(args);
|
||||
|
||||
pyret = PyEval_CallObject(callable, args);
|
||||
PyObject *pyret = PyEval_CallObject(callable, args);
|
||||
|
||||
//uwsgi_log("called\n");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user