]> granicus.if.org Git - apache/commitdiff
mod_cache: Fix uninitialized tmppath variable. PR 54949
authorJim Jagielski <jim@apache.org>
Thu, 23 May 2013 12:57:38 +0000 (12:57 +0000)
committerJim Jagielski <jim@apache.org>
Thu, 23 May 2013 12:57:38 +0000 (12:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1485679 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/cache/mod_cache.c

diff --git a/STATUS b/STATUS
index c1070d39a6782db75b376a81a9460fc6fd7f08ac..7a87c3a81f86582461ec37e759ba0d17176fdc7d 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -90,11 +90,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-    * mod_cache: Fix uninitialized tmppath variable. PR 54949
-      trunk patch: Variable removed from trunk in http://svn.apache.org/r1407381
-      2.4.x patch: http://people.apache.org/~minfrin/httpd-mod_cache-tmppath.patch
-      +1: minfrin, jailletc36, jim
-
 
 PATCHES PROPOSED TO BACKPORT FROM TRUNK:
   [ New proposals should be added at the end of the list ]
index 46ac09f69353bba5220d667db8005157faec2fb1..b1bb65abd03be777bfa2111155c9c97fd6fc57ce 100644 (file)
@@ -1774,7 +1774,7 @@ static void *merge_dir_config(apr_pool_t *p, void *basev, void *addv) {
 
 static void * create_cache_config(apr_pool_t *p, server_rec *s)
 {
-    const char *tmppath;
+    const char *tmppath = NULL;
     cache_server_conf *ps = apr_pcalloc(p, sizeof(cache_server_conf));
 
     /* array of URL prefixes for which caching is enabled */