But the attached patch is not correct. IMHO it needs to be Index: request.c =================================================================== --- request.c (revision 1735931) +++ request.c (working copy) @@ -1009,7 +1009,9 @@ /* No htaccess in an incomplete root path, * nor if it's disabled */ - if (seg < startseg || (!opts.override && opts.override_list == NULL)) { + if (seg < startseg || (!opts.override + && apr_is_empty_table(opts.override_list) + )) { break; } Regards Rüdiger From: Luca Toscano [mailto:toscano.luca@xxxxxxxxx]
Hi again!
https://bz.apache.org/bugzilla/show_bug.cgi?id=58528 seems to be very similar and a patch is attached. We can follow up on it adding a use case or just openinig a new one. Thanks! Luca |