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=29217>. 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=29217 Remove references to calloc() and free() ------- Additional Comments From [EMAIL PROTECTED] 2004-06-09 22:39 ------- Using pools instead of calloc() and free() wouldn't follow the same memory model that is currently implemented by util_ald_alloc() and util_ald_free(). For the shared memory cache, these function use apr_rmm_calloc() and apr_rmm_free(). The most logical mapping for non-shared memory is calloc() and free(). It would also cause a memory leak since there would be no way to reclaim the memory until the application closed. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
