DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17864>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=17864 table_clear() corrupts memory Summary: table_clear() corrupts memory Product: Apache httpd-2.0 Version: 2.0.44 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: mod_ssl AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] mod_ssl's table_clear() clears one bucket past the bucket array. This is causes by an incorrect loop condition ( "<=" instead of "<" ). Surprisingly, this bug does not exist in 1.3.27. Correct (as in 1.3.27) for (bucket_p = table_p->ta_buckets; bucket_p < bounds_p; bucket_p++) { Wrong ( 2.0.44) for (bucket_p = table_p->ta_buckets; bucket_p <= bounds_p; bucket_p++) { --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
