Index: support/htcacheclean.c =================================================================== --- support/htcacheclean.c (revision 1656739) +++ support/htcacheclean.c (working copy) @@ -459,6 +459,12 @@ url = apr_palloc(p, len + 1); url[len] = 0; + /* move the file ptr beyond the + * disk_cache_info_t length + * written in header file */ + offset = sizeof(len); + apr_file_seek(fd, APR_CUR, &offset); + if (apr_file_read_full(fd, url, len, &len) == APR_SUCCESS) {