mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 19:17:52 +02:00
LCL/DBGrid: Fix memory leak, patch by michalgw, issue #39904.
This commit is contained in:
parent
6dc31007d1
commit
e21bc4cd01
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user