From: Yann Ylavic Date: Fri, 27 Mar 2020 09:15:03 +0000 (+0000) Subject: Parentheses around AP_BUCKET_IS_EOR argument. X-Git-Tag: 2.5.0-alpha2-ci-test-only~1558 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f23060327f84198e2395d61e2bc5e8852ce751e5;p=thirdparty%2Fapache%2Fhttpd.git Parentheses around AP_BUCKET_IS_EOR argument. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1875769 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_request.h b/include/http_request.h index 7c818a08996..5ca04b091d4 100644 --- a/include/http_request.h +++ b/include/http_request.h @@ -605,7 +605,7 @@ AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_eor; * @param e The bucket to inspect * @return true or false */ -#define AP_BUCKET_IS_EOR(e) (e->type == &ap_bucket_type_eor) +#define AP_BUCKET_IS_EOR(e) ((e)->type == &ap_bucket_type_eor) /** * Make the bucket passed in an End Of REQUEST (EOR) bucket