pleriche / FastMM4

A memory manager for Delphi and C++ Builder with powerful debugging facilities
443 stars 162 forks source link

D 10.1 Berlin: crash with empty FMX application #18

Open tueddy opened 8 years ago

tueddy commented 8 years ago

Hello,

using FastMM4 in an empty FMX application in Delphi 10.1 Berlin results in crash in procedure TMonitor.Destroy;

steps to reproduce:

crash

Best regards Dirk

sglienke commented 8 years ago

I just quickly analyzed the issue and it is caused by the fact that the weak references hashmap is lazy initialized which happens when FastMM is already initialized but is finalized in the finalization part of System.pas which happens after the finalization part of FastMM4.pas is run (which calls FinalizeMemoryManager).

So this requires finalizing FastMM later (or not at all as seems to be done for BCB according to the ifdef?) or using the NeverUninstall option?

masonwheeler commented 8 years ago

Wow, how did something that basic make it past both internal testing and the beta?!?

the-Arioch commented 8 years ago

Is it the same as www.translate.ru -> http://www.sql.ru/forum/1162994/grabli-s-fastmm-bds-exe ?

They say to avoid this it needs to ensure the memory manager does not hook into SysUtils neither directly nor via other used units.

the-Arioch commented 8 years ago

From that forum "That is the same: Monitors support is initialized in SysUtils themselves"

GunSmoker commented 7 years ago

Quality Central: https://quality.embarcadero.com/browse/RSP-16796

obones commented 5 years ago

The Quality Central issue says it is resolved in 10.2.2 but has any of you actually checked that it is? I'm asking because I'm currently using 10.2.3, which should contain the fix, and yet, I'm observing the same error message (operation detected after uninstalled) at the end of my VCL application...

obones commented 5 years ago

Well, ok, sorry for the noise, this comes from my own code, a very weird case of interdependencies between interface instances.

graemeg commented 5 years ago

I've got the same issue using Tokyo 10.2. I'll see if my client will allow me to upgrade to 10.2.2 or 10.2.3 and see if that fixes the issue.

[edit] OK, I can confirm I'm on 10.2.2 and the issue still exists here on my environment. So no, the issue doesn't seem to be resolved.

rplant09485 commented 4 years ago

Hi,

A somewhat hack (but seems effective) fix for this Makes the finalize routines run later (from the ExitProcessProc routine).

Regards Roger

Change the bottom of FastMM4.pas (including initialize and finalize) with code below. Add a section to the FastMM4Options.inc file.

// FastMM4Options.inc { Enable UseExitProcFinalize to cause late shutdown of the memory manager Good for newer versions of delphi (10.1+), esp with fmx} {$define UseExitProcFinalize}

// FastMM4.pas

{$ifndef PatchBCBTerminate} {$ifdef UseExitProcFinalize} var oldExitProc: procedure();

procedure ExitProcFinalize; begin FinalizeMemoryManager; if assigned(oldExitProc) then oldExitProc; end; {$endif} {$endif}

initialization RunInitializationCode;

finalization {$ifndef PatchBCBTerminate} {$ifdef UseExitProcFinalize} oldExitProc := ExitProcessProc; ExitProcessProc := ExitProcFinalize; {$else} FinalizeMemoryManager; {$endif} {$endif}

end.

GunSmoker commented 3 years ago

While it says that the issue is fixed in 10.2.2 - it is not. Not all FreeMem/Dispose calls were removed in 10.2 and 10.3. Only 10.4 seems to fix this issue completely.

GunSmoker commented 3 years ago

This is fixed in 10.4, so this ticket should probably be closed.