From 1c4d2044c64c8bcc916c01c63ead3238d86842e5 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Tue, 11 Sep 2001 11:25:28 +0000 Subject: [PATCH] add a note about an uninitialized variable git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91002 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_cache.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index 608b022ede..3303a4a909 100644 --- a/modules/experimental/mod_cache.c +++ b/modules/experimental/mod_cache.c @@ -599,6 +599,7 @@ int ap_cache_in_filter(ap_filter_t *f, apr_bucket_brigade *in) info->request_time = r->request_time; /* check last-modified date */ + /* XXX FIXME we're referencing date on a path where we didn't set it */ if (lastmod != APR_DATE_BAD && lastmod > date) { /* if its in the future, then replace by date */ -- 2.40.0