cosmetic fix for fastcgi

This commit is contained in:
Unbit
2013-06-15 14:37:50 +02:00
parent 3eb5ec3543
commit b3e4ff8613
+3 -7
View File
@@ -205,13 +205,9 @@ ssize_t uwsgi_proto_fastcgi_read_body(struct wsgi_request *wsgi_req, char *buf,
wsgi_req->proto_parser_buf = tmp_buf;
wsgi_req->proto_parser_buf_size += fcgi_all_len - (wsgi_req->proto_parser_buf_size - wsgi_req->proto_parser_pos);
}
if (!has_read) {
goto gather;
}
else {
errno = EAGAIN;
return -1;
}
if (!has_read) goto gather;
errno = EAGAIN;
return -1;
}
else {
gather: