GDIPlus functions cause a memory leak. Root › Technical support › Troubleshooting This topic has 7 replies, 2 voices, and was last updated 6 years, 7 months ago by HeDiBo. Viewing 7 posts - 1 through 7 (of 7 total) Author Posts August 27, 2018 at 5:01 pm #58311 SupportKeymaster Hello and thank you for researching. I will check and fix it. August 28, 2018 at 12:19 pm #58313 HeDiBoParticipant 'Support' wrote: Hello and thank you for researching. I will check and fix it. I found that removing the memory leak from TsSplitView, removes the other ones too. This change did it: Code: destructor TsSplitView.Destroy; begin FBlurData.Free; FreeAndNil(BGBmp); (*** DB ***) FreeAndNil(BluredBmp); (*** DB ***) inherited; end; September 4, 2018 at 3:05 pm #58323 SupportKeymaster Hello and thank you for the information. I have checked GDI Plus functions, GdiplusStartup is called there in the acGDIBegin procedure. Memory leak will be removed very soon I think, some problems with reproduction of the problem exists. September 4, 2018 at 3:19 pm #58315 HeDiBoParticipant 'Support' wrote: Hello and thank you for the information. I have checked GDI Plus functions, GdiplusStartup is called there in the acGDIBegin procedure. Memory leak will be removed very soon I think, some problems with reproduction of the problem exists. The problem is only in TsSplitView, as mentioned above. Freeing the bitmaps mentioned will solve the memory leak. September 4, 2018 at 3:23 pm #58316 SupportKeymaster Yes, this code should work, but it will be great if I can find a reason of this leak. September 4, 2018 at 3:27 pm #58317 HeDiBoParticipant 'Support' wrote: Yes, this code should work, but it will be great if I can find a reason of this leak. In sPanel the allocation of BGBmp especially is a bit fishy. It is very hard to find why it is freed if the application is stopped when the bitmap is allocated. September 19, 2018 at 11:15 am #58390 HeDiBoParticipant Solved. (You didn't need to keep my initials in the bug fix, but I appreciate it.) Author Posts Viewing 7 posts - 1 through 7 (of 7 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In Root › Technical support › Troubleshooting