Memory leak in TsPageControl.DrawStdTab

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #37692
    Lasse
    Participant

    TempBmp is leaking in TsPageControl.DrawStdTab, use try..finally:

    Code:
    TempBmp := CreateBmp32(R);
    try

    finally
    TempBmp.Free;
    end;
    #57426
    Support
    Keymaster

    Thank you, I will verify and fix it.

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