On Dec 9, 2008, at 8:36 PM, Plüm, Rüdiger, VF-Group wrote:
-----Ursprüngliche Nachricht-----
Von: Jim Jagielski
Gesendet: Dienstag, 9. Dezember 2008 21:54
An: [email protected]
Betreff: Re: [VOTE] Release Apache HTTP server 2.3.0-alpha
Hmmm, normally ap_remove_output_filter should be able to handle this
case. I guess this needs some investigation why it does not.
Yeah... for me, that's the worrisome part. Will do some deeping
tracing on the code path.
I think I know what happens. The problem is that we have not updated
the
request_rec field in all filter structs at this point of time. So
ap_remove_output_filter
updates rr->output_filters instead of r->output_filters. The
following patch
reverts r724805 and fixes the issue by moving the calls to
update_r_in_filters
up in the code. I couldn't find any framework failures afterwards.
Do you still
see some?
:)
Yep. Some tracing indicated that and I did some alternate
adjusting to work around it. But this one is cleaner.
Added in r725077