mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
* Assign rv in the if statement to return the correct error code and
more important an error code at all, as currently APR_SUCCESS is returned in the error case. PR: 40865 Submitted by: Andrew Rucker Jones <arjones simultan.dyndns.org> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@470076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -1032,7 +1032,10 @@ PROXY_DECLARE(apr_status_t) ap_proxy_string_read(conn_rec *c, apr_bucket_brigade
|
||||
*eos = 1;
|
||||
}
|
||||
else {
|
||||
if (APR_SUCCESS != apr_bucket_read(e, (const char **)&response, &len, APR_BLOCK_READ)) {
|
||||
if (APR_SUCCESS != (rv = apr_bucket_read(e,
|
||||
(const char **)&response,
|
||||
&len,
|
||||
APR_BLOCK_READ))) {
|
||||
return rv;
|
||||
}
|
||||
/*
|
||||
|
Reference in New Issue
Block a user