From 7ed108565700e456b69174b1284563f6f403b695 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 11 Sep 2001 11:19:23 +0000 Subject: [PATCH] fix a typo which prevented mod_mem_cache from compiling with AP_DEBUG_ASSERT() enabled git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91001 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_mem_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/mod_mem_cache.c b/modules/experimental/mod_mem_cache.c index 9117e95189..d524febd9f 100644 --- a/modules/experimental/mod_mem_cache.c +++ b/modules/experimental/mod_mem_cache.c @@ -508,7 +508,7 @@ static int write_body(cache_handle_t *h, apr_bucket_brigade *b) /* This should not happen, but if it does, we are in BIG trouble * cause we just stomped all over the heap. */ - AP_DEBUG_ASSERT(h->cache_object->count > mobj->m_len); + AP_DEBUG_ASSERT(h->cache_obj->count > mobj->m_len); } return OK; -- 2.40.0