mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
* Fix precedence problem.
PR: 40658 Submitted by: Larry Cipriani <lvc lucent.com> Reviewed by: rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@452213 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -63,9 +63,9 @@ static int process_echo_connection(conn_rec *c)
|
||||
bb = apr_brigade_create(c->pool, c->bucket_alloc);
|
||||
|
||||
/* Get a single line of input from the client */
|
||||
if ((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
|
||||
APR_BLOCK_READ, 0) != APR_SUCCESS ||
|
||||
APR_BRIGADE_EMPTY(bb))) {
|
||||
if (((rv = ap_get_brigade(c->input_filters, bb, AP_MODE_GETLINE,
|
||||
APR_BLOCK_READ, 0)) != APR_SUCCESS) ||
|
||||
APR_BRIGADE_EMPTY(bb)) {
|
||||
apr_brigade_destroy(bb);
|
||||
break;
|
||||
}
|
||||
|
Reference in New Issue
Block a user