mirror of
https://github.com/apache/httpd.git
synced 2025-08-06 11:06:17 +00:00
handle large writes in ap_rputs
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1901500 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -2064,6 +2064,9 @@ AP_DECLARE(int) ap_rputc(int c, request_rec *r)
|
||||
|
||||
AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r)
|
||||
{
|
||||
if (nbyte < 0)
|
||||
return -1;
|
||||
|
||||
if (r->connection->aborted)
|
||||
return -1;
|
||||
|
||||
|
Reference in New Issue
Block a user