1
0
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:
Ruediger Pluem
2006-10-02 21:13:58 +00:00
parent 9afe6d7dbb
commit 2890c834f7
2 changed files with 6 additions and 3 deletions

View File

@@ -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;
}