Memory leak in VLC FR4 version 4.13.2

edited February 2014 in FastReport 4.0
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:
  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

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.