DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=39643>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=39643 ------- Additional Comments From [EMAIL PROTECTED] 2006-05-25 05:30 ------- Thanks for the update. It had been very helpful. The reason for the segfault is a problem between mod_cache and mod_filter. I have to discuss the options for a final fix on the dev list. Meanwhile you could try the following workaround patch which should prevent the segfault. Effectively it disables mod_filter on reponses that get delivered from the cache. As I do not know your further configuration I do not know if this breaks other things on your site.: --- mod_filter.c (Revision 406722) +++ mod_filter.c (Arbeitskopie) @@ -355,6 +355,9 @@ harness_ctx *ctx = f->ctx; ap_filter_rec_t *filter = f->frec; + if (!ctx) + return ap_pass_brigade(f->next, bb); + if (f->r->status != 200) { ap_remove_output_filter(f); return ap_pass_brigade(f->next, bb); -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
