I have some customers reporting an error sometimes when closing my applications:
This is slightly surprising due to:
GetMEM call after FastMM is unsinstalled is a bit weird (user reports he is using commandline functionality of my application, so I will try investigate that, but I do not call anything after an application is terminated. But okay, something worth investigating)
I am using release mode settings, so howcome FastMM shows an error message? That is the most important question for me...
These are the defines I am using for release builds:
{$undef FullDebugMode}
{$undef EnableMemoryLeakReporting}
{$undef CheckHeapForCorruption}
{$undef UseOutputDebugString}
{$undef RawStackTraces}
{$undef LogErrorsToFile}
{$undef LogMemoryLeakDetailToFile}
{$undef ClearLogFileOnStartup}
{$undef HideExpectedLeaksRegisteredByPointer}
{$define ASMVersion}
{$define AssumeMultiThreaded}
The application is multhreaded, but does not share memory manager with dlls or similar
According to the FastMM source code, you can do:
To avoid this error message.
Excerpt from the source code: