From 4fc5798dca50389a0df644e931f653865b3b1286 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Tue, 22 Mar 2016 18:25:46 +0000 Subject: [PATCH] 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 --- server/util_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/util_filter.c b/server/util_filter.c index 9a05cc1a635..25ed63434d3 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; } -- 2.47.3