You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2016/03/22 19:25:46 UTC

svn commit: r1736226 - /httpd/httpd/trunk/server/util_filter.c

Author: ylavic
Date: Tue Mar 22 18:25:46 2016
New Revision: 1736226

URL: http://svn.apache.org/viewvc?rev=1736226&view=rev
Log:
Follow up to r1734656, r1736216, r1736225: more correct pointer size semantic.

Modified:
    httpd/httpd/trunk/server/util_filter.c

Modified: httpd/httpd/trunk/server/util_filter.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util_filter.c?rev=1736226&r1=1736225&r2=1736226&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util_filter.c (original)
+++ httpd/httpd/trunk/server/util_filter.c Tue Mar 22 18:25:46 2016
@@ -699,7 +699,7 @@ static apr_status_t filters_cleanup(void
 {
     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;
 }