FCGI_STDIN not being sent. Interaction with latest uWSGI (and
probably other protocol implementations) breaks without this.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@
1603027 13f79535-47bb-0310-9956-
ffa450edef68
if (last_stdin) {
pfd.reqevents = APR_POLLIN; /* Done with input data */
- if (writebuflen) { /* empty AP_FCGI_STDIN not already sent? */
+ /* signal EOF (empty FCGI_STDIN) */
ap_fcgi_fill_in_header(&header, AP_FCGI_STDIN, request_id,
0, 0);
ap_fcgi_header_to_array(&header, farray);
*err = "sending empty stdin";
break;
}
- }
}
}