From ba76449ec7ece16d67d739dcd0e3704e942e0ba0 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 12 May 2009 19:23:24 +0000 Subject: [PATCH] fix typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@774041 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mem/mod_sharedmem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/mem/mod_sharedmem.c b/modules/mem/mod_sharedmem.c index 76b2026ba3..322d6db76c 100644 --- a/modules/mem/mod_sharedmem.c +++ b/modules/mem/mod_sharedmem.c @@ -472,7 +472,7 @@ static apr_status_t slotmem_put(ap_slotmem_t *slot, unsigned int id, unsigned ch } memcpy(ptr, src, src_len); /* bounds check? */ /* We know the id fit it */ - inuse = (slot->base + (slot->size * slot->num); + inuse = (slot->base + (slot->size * slot->num)); inuse[id] = 1; return APR_SUCCESS; } -- 2.50.1