of patch, right??
PR:
Obtained from:
Submitted by:
Reviewed by:
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@104872
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 1.3.32
+ *) Fix trivial bug in mod_log_forensic that caused the child
+ to seg fault when certain invalid requests were fired at it with
+ forensic logging is enabled. [Will Slater <Will Slater orbisuk.com>]
+
*) Fix memory leak in the cache handling of mod_rewrite. PR 27862.
[chunyan sheng <shengperson yahoo.com>, André Malo]
return DECLINED;
rcfg = ap_get_module_config(r->request_config, &log_forensic_module);
+
+ if (!rcfg)
+ return DECLINED;
+
s = ap_pstrcat(r->pool, "-", rcfg->id, "\n", NULL);
write(cfg->fd, s, strlen(s));