Log4cxx memory leaks in reconfiguration.

2006-06-12 Thread Balik, Martin
Hi,   I tried to investigate possible memleaks in log4cxx, and I found one using many reconfigurations in endless loop. I made small program like this:   #include #include   using namespace log4cxx;int main(){  do {  log4cxx::xml::DOMConfigurator::configure("../config/log_stdconf.xml"); 

Re: Log4cxx memory leaks in reconfiguration.

2006-06-12 Thread Curt Arnold
On Jun 12, 2006, at 6:59 AM, Balik, Martin wrote: Hi, I tried to investigate possible memleaks in log4cxx, and I found one using many reconfigurations in endless loop. I made small program like this: #include #include using namespace log4cxx; int main() { do { log4cxx::xml::DOMConf

RE: Log4cxx memory leaks in reconfiguration.

2006-06-12 Thread Balik, Martin
I tried to run the program with fixed number of iterations (1000), let it terminate normally and it looks that, the leak is reported anyway (I'm just sending a part of the report, I can store full reports in jira assigned to bug). But it's possible that the reason of the leak can be other than I t