https://bz.apache.org/bugzilla/show_bug.cgi?id=66243
--- Comment #4 from Tj <[email protected]> --- With some further debug messages I've identified the cause but not the solution! All calls to includes_filter() have the same, original request_rec address - including the sub-requests so 'parent' is always NULL (since the code expects to be working on one of the sub-request structures). In my test page I see the same message for original and sub-requests ('r' never changes to reflect a sub-request 'rr' value): * includes_filter() r=0x7fc5f45150a0 r->request_config=0x7fc5f4516388 parent=0x0 In handle_include() the 'rr' values change. E.g: ... # level2-C2.html + level3-D3.html ? * handle_include() r=0x7fc5f44f90a0 rr=0x7fc5f44ef0a0 ... # level1_A1.html + level2-C2.html ? * handle_include() r=0x7fc5f45070a0 rr=0x7fc5f44f90a0 ... # index.html + level1-A4.html ? * handle_include() r=0x7fc5f45150a0 rr=0x7fc5f45070a0 # index.html + level1-A4.html ? * handle_include() r=0x7fc5f45150a0 rr=0x7fc5f44fb0a0 ... # index.html + level1-B5.html ? * handle_include() r=0x7fc5f45150a0 rr=0x7fc5f44f30a0 -- You are receiving this mail because: You are the assignee for the bug. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
