-*- coding: utf-8 -*-
Changes with Apache 2.5.0
+ *) mod_cache_disk: Fix potential hangs on Windows when using mod_cache_disk.
+ PR55833. [Eric Covener]
+
*) mod_headers: Allow the "value" parameter of Header and RequestHeader to
contain an ap_expr expression if prefixed with "expr=". [Eric Covener]
return DECLINED;
}
- apr_file_close(dobj->hdrs.fd);
/* Is this a cached HEAD request? */
if (dobj->disk_info.header_only && !r->header_only) {
ap_log_rerror(APLOG_MARK, APLOG_DEBUG, APR_SUCCESS, r, APLOGNO(00707)
"HEAD request cached, non-HEAD requested, ignoring: %s",
dobj->hdrs.file);
+ apr_file_close(dobj->hdrs.fd);
return DECLINED;
}
"Cached URL info header '%s' didn't match body, ignoring this entry",
dobj->name);
+ apr_file_close(dobj->hdrs.fd);
return DECLINED;
}