Memory leak in v14.11

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #38060
    Lasse
    Participant

    This didn't happen in previous build v14.10. I build by using Delphi 10.3 (Rio) with FastMM4.

    I think the bug is in TsSkinManager.ReloadSkin. CloseSkinFile call is removed.

    #58743
    Support
    Keymaster

    Thank you for the message. The issue will be solved in the nearest release.

    #58749
    HeDiBo
    Participant
    'Support' wrote:

    Thank you for the message. The issue will be solved in the nearest release.

    The leak is at the end of TsSkinManager.Destroy:

    Code:
    SetLength(ThirdLists, 0);
    FreeAndNil(FThirdParty);
    FreeAndNil(sc); (*** DB ***)
    inherited Destroy;

    The marked statement should be added

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.