Commit 6a538e14 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent 00065c81
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;