DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ· RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=43865>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ· INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=43865 Summary: ssl_engine_vars.c initializes a static variable with memory from the configuration pool which is later released Product: Apache httpd-2 Version: 2.2.6 Platform: PC OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: mod_ssl AssignedTo: [email protected] ReportedBy: [EMAIL PROTECTED] In ssl_engine_vars.c at line 645, the static variable 'library' is initialized (one time only) using memory obtained from a pool. The pool, as it turs out, is the configuration record pool (pconf). That pool is cleared after phase 1 of module configuration, (but of course static variables are not) and so the address pointed to by 'library' is no longer valid when the second phase of configuration takes place. This leads to garbage data in the server_description field of Apache. This bug is related to (and may be the cause of) bug #40146 -- Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug, or are watching the assignee. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
