Re: [ft-devel] Why my memory is not been freed?

2009-03-09 Thread Jun.Wang
Bugzilla from w...@gnu.org wrote: Please upgrade to version 2.3.7 (or the current CVS or 2.3.9 next week) and try again. Werner I use ver2.3.7 test again. Follows are the memory report: //only 1 character FreeType Memory Dump: current=107502 max=107654 total=125708

Re: [ft-devel] Why my memory is not been freed?

2009-03-09 Thread David Turner
2009/3/7 Jun.Wang xjw...@sunmedia.com.cn I did the memory debug with a little modify. 1. In FT_Done_FreeType( FT_Library library ), I disabled the line: FT_Done_Library( library ), so the memory report will disaply the current memory. ??? 2. I call FT_Done_FreeType() before

Re: [ft-devel] Why my memory is not been freed?

2009-03-09 Thread Jun.Wang
David Turner-5 wrote: This is a bug in your program. After FT_Done_FreeType() is called, every memory allocated by the corresponding FT_Library should be released (with the exception of FT_Glyph objects allocated by the user, but you are responsible for free-ing them before