Changes with Apache 2.3.0
[Remove entries to the current 2.0 and 2.2 section below, when backported]
+ *) mod_echo: Fix precedence problem in if statement. PR 40658.
+ [Larry Cipriani <lvc lucent.com>]
+
*) mod_mime_magic: Fix precedence problem in if statement. PR 40656.
[Larry Cipriani <lvc lucent.com>]
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;
}