From: Jean-Frederic Clere Date: Wed, 26 Jul 2006 14:57:25 +0000 (+0000) Subject: Oops. item_size and item_num are pointers. Thanks Ruediger Pluem. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd6979529ea0faafa42eddbdf9dbe1cca7b79498;p=thirdparty%2Fapache%2Fhttpd.git Oops. item_size and item_num are pointers. Thanks Ruediger Pluem. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/httpd-proxy-scoreboard@425752 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/mem/mod_plainmem.c b/modules/mem/mod_plainmem.c index 612879b3fa1..da1b93cb533 100644 --- a/modules/mem/mod_plainmem.c +++ b/modules/mem/mod_plainmem.c @@ -99,7 +99,7 @@ static apr_status_t ap_slotmem_create(ap_slotmem_t **new, const char *name, apr_ return APR_SUCCESS; } -static apr_status_t ap_slotmem_attach(ap_slotmem_t **new, const char *name, apr_size_t item_size, int item_num, apr_pool_t *pool) +static apr_status_t ap_slotmem_attach(ap_slotmem_t **new, const char *name, apr_size_t *item_size, int *item_num, apr_pool_t *pool) { void *slotmem = NULL; ap_slotmem_t *res;