From: Jeff Trawick Date: Tue, 11 Sep 2001 11:25:28 +0000 (+0000) Subject: add a note about an uninitialized variable X-Git-Tag: 2.0.26~271 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1c4d2044c64c8bcc916c01c63ead3238d86842e5;p=apache 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 --- 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 */