]> granicus.if.org Git - apache/commitdiff
add a note about an uninitialized variable
authorJeff Trawick <trawick@apache.org>
Tue, 11 Sep 2001 11:25:28 +0000 (11:25 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 11 Sep 2001 11:25:28 +0000 (11:25 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91002 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_cache.c

index 608b022ede37bdc741c0ae130767cf901562e9bb..3303a4a9093b30ecc146772fdc212b781982a9c4 100644 (file)
@@ -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 */