|
|||||||||||
|
DO NOT REPLY [Bug 14147] - patch for filename truncation bug in ap_directory_walk
From: <bugzilla(at)apache.org>
Date: Thu Oct 31 2002 - 16:05:50 EST
patch for filename truncation bug in ap_directory_walk
The check below always succeeds, right? --> if (r->filename[filename_len-1] == '/')
I suspect that it should probably be AP_DEBUG_ASSERT(r->filename[filename_len-1] == '/'); r->filename[--filename_len] = '\0';
The AP_DEBUG_ASSERT() is a good way to doc the assumption but
it won't generate any code unless you build with
Thanks for digging into this!!!!! To unsubscribe, e-mail: bugs-unsubscribe@httpd.apache.org For additional commands, e-mail: bugs-help@httpd.apache.org Received on Thu Oct 31 21:04:53 2002 This archive was generated by hypermail 2.1.8 : Wed Aug 23 2006 - 16:44:01 EDT |
||||||||||
|
|||||||||||