Bug#387843: [gmail] Bug#387843: dvdauthor seems to leak memory

2006-10-09 Thread Marc Leeman
> With the aid of Boehm's GC in leak-detecting mode I have established > that dvdauthor is leaking a lot of memory. Thanks for the patches (again). -- Marc Leeman R&D Firmware Engineer Barco Control Rooms Noordlaan 5, Industriezone, B-8520 Kuurne (BE) Tel. +32 56 368 428 http://www

Bug#387843: dvdauthor seems to leak memory

2006-10-07 Thread Ben Hutchings
The next leak I noticed is data from the XML file. readxml uses xmlTextReader{Name,Value} which return *copies* of the parser's state that should then be freed. However these are generally assumed to be references to the parser's state and are not freed. Nor is the parser itself cleaned up. Her

Bug#387843: dvdauthor seems to leak memory

2006-10-07 Thread Ben Hutchings
With the aid of Boehm's GC in leak-detecting mode I have established that dvdauthor is leaking a lot of memory. The biggest leak is VOBU sectors. FindVobus reads all VOBU sectors of a domain (I think) into memory; FixVobus edits and writes them back; and they are then dead but never freed. This

Bug#387843: dvdauthor seems to leak memory

2006-09-16 Thread Ben Hutchings
Package: dvdauthor Version: 0.6.11-3.1 Severity: normal While authoring one of the DebConf 6 DVDs, dvdauthor gradually uses more and more memory, eventually allocating about 300 MB. I am fairly certain that there is no need for it to hold that much data during the authoring process and suspect th