From 64a25300728df1010af58aeed6ee2a90c1852d0a Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 5 May 2020 06:02:32 +0200 Subject: [PATCH] fix leak introduced in 3.9.0 --- src/u_todolist.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/src/u_todolist.pas b/src/u_todolist.pas index 565d4a16..7a7c8651 100644 --- a/src/u_todolist.pas +++ b/src/u_todolist.pas @@ -265,6 +265,7 @@ end; {$REGION IEditableOptions ----------------------------------------------------} constructor TTodoOptions.create(AOwner: TComponent); begin + inherited create(aOwner); fdisableIfMoreFilesThan := 25; end;