fixed http fd passing on POST

This commit is contained in:
roberto@natty32
2011-03-04 14:23:36 +01:00
parent c478b0a0c8
commit e53a6fa4c0
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -832,6 +832,9 @@ int uwsgi_python_signal_handler(uint8_t sig, void *handler) {
if (!args)
return -1;
if (!handler) return -1;
PyTuple_SetItem(args, 0, PyInt_FromLong(sig));
ret = python_call(handler, args, 0);