Merged in 2.5.x changes into trunk.

This commit is contained in:
b1v1r
2010-02-14 22:46:42 +00:00
parent f925a978ab
commit b784acd316
6 changed files with 714 additions and 257 deletions

View File

@@ -922,7 +922,7 @@ static const char *cmd_audit_log(cmd_parms *cmd, void *_dcfg, const char *p1)
dcfg->auditlog_name = (char *)p1;
if (dcfg->auditlog_name[0] == '|') {
const char *pipe_name = ap_server_root_relative(cmd->pool, dcfg->auditlog_name + 1);
const char *pipe_name = dcfg->auditlog_name + 1;
piped_log *pipe_log;
pipe_log = ap_open_piped_log(cmd->pool, pipe_name);

File diff suppressed because it is too large Load Diff

View File

@@ -29,7 +29,7 @@ apr_status_t msc_pcre_cleanup(msc_regex_t *regex) {
regex->pe = NULL;
}
if (regex->re != NULL) {
free(regex->re);
pcre_free(regex->re);
regex->re = NULL;
}
}