LCL/DBGrid: Fix memory leak, patch by michalgw, issue #39904.

This commit is contained in:
wp_xyz 2022-09-15 23:42:57 +02:00
parent 6dc31007d1
commit e21bc4cd01

View File

@ -4630,7 +4630,12 @@ begin
FList.Insert(Index, Bookmark);
FGrid.Invalidate;
end else
begin
FDataset.FreeBookmark(Bookmark);
{$ifndef noautomatedbookmark}
SetLength(TBookmark(Bookmark),0); // decrease reference count
{$endif}
end;
end;
end;