summaryrefslogtreecommitdiff
path: root/server/util_filter.c
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2016-03-22 18:23:08 +0000
committerYann Ylavic <ylavic@apache.org>2016-03-22 18:23:08 +0000
commit054f1a98c335a1d98fa1352630171b9b0840de06 (patch)
tree56663ba45acb1aeb6cbfcefbeef1e00ce5579ede /server/util_filter.c
parent958ef399d680e712a9218525f12ba7933b9eb40f (diff)
downloadhttpd-054f1a98c335a1d98fa1352630171b9b0840de06.tar.gz
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
Diffstat (limited to 'server/util_filter.c')
-rw-r--r--server/util_filter.c2
1 files changed, 1 insertions, 1 deletions
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);