Memory leak in VLC FR4 version 4.13.2
Hello!
When i generate report (programaticaly from delphi) in my intraweb application the size of my app stays the same.
But once i add picture in report:
The size starts to grow, for each generated report. I'am freeing resources, but once i go over this
part of code size of application is incrised permanently.
But if i do like this, size of app don't grow (picture is not visible, so it WAS freed)
Where is this leak coming from? Looks like frxReport component is leaking? I am very lost, and can't publish IW app like this
When i generate report (programaticaly from delphi) in my intraweb application the size of my app stays the same.
But once i add picture in report:
  PictureGraf:=frxReport.FindObject('PictureGraf') as TfrxPictureView;
  CreateChart(600,700);
  PictureGraf.Picture.Bitmap.Assign(ChartImage.Picture.Bitmap);
The size starts to grow, for each generated report. I'am freeing resources, but once i go over this
part of code size of application is incrised permanently.
frxReport.PrepareReport(true);
PictureGraf.Picture.Bitmap.ReleaseHandle;
PictureGraf.Picture.Bitmap.FreeImage;
But if i do like this, size of app don't grow (picture is not visible, so it WAS freed)
PictureGraf.Picture.Bitmap.ReleaseHandle;
PictureGraf.Picture.Bitmap.FreeImage;
frxReport.PrepareReport(true);
Where is this leak coming from? Looks like frxReport component is leaking? I am very lost, and can't publish IW app like this