diff options
author | Graham Leggett <minfrin@apache.org> | 2010-09-29 17:41:15 +0200 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2010-09-29 17:41:15 +0200 |
commit | 8dd0a17fa3054acf30a35bb419ff2b96384b7f9a (patch) | |
tree | bc1aa49630e37bc3c47ff76373198736293736de /support | |
parent | Adding #logging link. (diff) | |
download | apache2-8dd0a17fa3054acf30a35bb419ff2b96384b7f9a.tar.xz apache2-8dd0a17fa3054acf30a35bb419ff2b96384b7f9a.zip |
htcacheclean: If the cache file format is unrecognised, remove the entry
from the cache.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1002686 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'support')
-rw-r--r-- | support/htcacheclean.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/support/htcacheclean.c b/support/htcacheclean.c index 72983ce558..fef8e854da 100644 --- a/support/htcacheclean.c +++ b/support/htcacheclean.c @@ -509,6 +509,12 @@ static int process_dir(char *path, apr_pool_t *pool) p); break; } + else { + /* We didn't recognise the format, kill the files */ + apr_file_close(fd); + delete_entry(path, d->basename, p); + break; + } } else { apr_file_close(fd); |