Why does my Delphi program's memory continue to grow?

后端 未结 4 1206
北海茫月
北海茫月 2020-12-09 11:31

I am using Delphi 2009 which has the FastMM4 memory manager built into it.

My program reads in and processes a large dataset. All memory is freed correctly whenever

4条回答
  •  庸人自扰
    2020-12-09 12:15

    You are half-leaking memory; obviously. You are leaking memory while the program is running, but when you close the program, your dataset is properly freed so FastMM (rightfully) does not report it.

    See this for details: My program never releases the memory back. Why?

提交回复
热议问题