From: Yann Ylavic Date: Tue, 22 Mar 2016 18:23:08 +0000 (+0000) Subject: Follow up to r1734656, r1736216: use correct pointer size semantic. X-Git-Tag: 2.5.0-alpha~1842 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=054f1a98c335a1d98fa1352630171b9b0840de06;p=apache Follow up to r1734656, r1736216: use correct pointer size semantic. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1736225 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util_filter.c b/server/util_filter.c index b392ff2722..9a05cc1a63 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -714,7 +714,7 @@ AP_DECLARE(int) ap_filter_prepare_brigade(ap_filter_t *f, apr_pool_t **p) pool = f->r ? f->r->pool : f->c->pool; key = apr_pmemdup(pool, &f, sizeof f); - apr_hash_set(f->c->filters, key, sizeof key, f); + apr_hash_set(f->c->filters, key, sizeof *key, f); f->bb = apr_brigade_create(pool, f->c->bucket_alloc);