]> granicus.if.org Git - apache/commitdiff
Follow up to r1734656, r1736216, r1736225: more correct pointer size semantic.
authorYann Ylavic <ylavic@apache.org>
Tue, 22 Mar 2016 18:25:46 +0000 (18:25 +0000)
committerYann Ylavic <ylavic@apache.org>
Tue, 22 Mar 2016 18:25:46 +0000 (18:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1736226 13f79535-47bb-0310-9956-ffa450edef68

server/util_filter.c

index 9a05cc1a635f67a70a1befe483cb82e604a3a0b4..25ed63434d32b7b812fe225fab9c1288ae6e27be 100644 (file)
@@ -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;
 }