Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

I recently had a very similar problem with my program. See my question: Why does my Delphi program’s memory continue to grow?Why does my Delphi program’s memory continue to grow?

Despite my being convinced it was something else, it turned out to be major memory leaks caused by just a few mistakes in my code to free the memory.

Before you do anything else, be absolutely certain you are releasing all your memory properly.

I recently had a very similar problem with my program. See my question: Why does my Delphi program’s memory continue to grow?

Despite my being convinced it was something else, it turned out to be major memory leaks caused by just a few mistakes in my code to free the memory.

Before you do anything else, be absolutely certain you are releasing all your memory properly.

I recently had a very similar problem with my program. See my question: Why does my Delphi program’s memory continue to grow?

Despite my being convinced it was something else, it turned out to be major memory leaks caused by just a few mistakes in my code to free the memory.

Before you do anything else, be absolutely certain you are releasing all your memory properly.

Source Link
lkessler
  • 20.2k
  • 36
  • 139
  • 211

I recently had a very similar problem with my program. See my question: Why does my Delphi program’s memory continue to grow?

Despite my being convinced it was something else, it turned out to be major memory leaks caused by just a few mistakes in my code to free the memory.

Before you do anything else, be absolutely certain you are releasing all your memory properly.