Re: [jira] Created: (MODPYTHON-184) Memory leak apache.table()

2006-08-16 Thread Graham Dumpleton
Justin Erenkrantz wrote .. > On 8/16/06, Jim Gallacher <[EMAIL PROTECTED]> wrote: > > Actually I don't think apr_pool_destroy() in table_dealloc is actually > > destroying the pool. I've been poking around in the code and there is > > something odd going on here. > > I would actually love to test

Re: [jira] Created: (MODPYTHON-184) Memory leak apache.table()

2006-08-16 Thread Justin Erenkrantz
On 8/16/06, Jim Gallacher <[EMAIL PROTECTED]> wrote: Actually I don't think apr_pool_destroy() in table_dealloc is actually destroying the pool. I've been poking around in the code and there is something odd going on here. I would actually love to test this, but I can't build trunk on Mac OS X.

Re: [jira] Created: (MODPYTHON-184) Memory leak apache.table()

2006-08-16 Thread Jim Gallacher
Alexis Marrero wrote: > Jim, > > This are my results for the memory leak search in apache.table(). > > The table object creates a memory pool by using apr_pool_create_ex() and > destroys the pool using apr_pool_destroy(). I added a line in > MpTable_New() before "return (PyObject*)t" to destroy t

Re: [jira] Created: (MODPYTHON-184) Memory leak apache.table()

2006-08-15 Thread Jim Gallacher
Alexis Marrero wrote: > Jim, > > This are my results for the memory leak search in apache.table(). > > The table object creates a memory pool by using apr_pool_create_ex() and > destroys the pool using apr_pool_destroy(). I added a line in > MpTable_New() before "return (PyObject*)t" to destroy t

Re: [jira] Created: (MODPYTHON-184) Memory leak apache.table()

2006-08-15 Thread Alexis Marrero
Jim,This are my results for the memory leak search in apache.table().  The table object creates a memory pool by using apr_pool_create_ex() and destroys the pool using apr_pool_destroy(). I added a line in MpTable_New() before "return (PyObject*)t" to destroy the pool and ran 1M iterations and I no