From: Yann Ylavic Date: Tue, 22 Mar 2016 18:25:46 +0000 (+0000) Subject: Follow up to r1734656, r1736216, r1736225: more correct pointer size semantic. X-Git-Tag: 2.5.0-alpha~1841 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4fc5798dca50389a0df644e931f653865b3b1286;p=apache Follow up to r1734656, r1736216, r1736225: more correct pointer size semantic. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1736226 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_filter.c b/server/util_filter.c index 9a05cc1a63..25ed63434d 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -699,7 +699,7 @@ static apr_status_t filters_cleanup(void *data) { ap_filter_t **key = data; - apr_hash_set((*key)->c->filters, key, sizeof(ap_filter_t **), NULL); + apr_hash_set((*key)->c->filters, key, sizeof *key, NULL); return APR_SUCCESS; }