Skip to content
This repository was archived by the owner on May 1, 2024. It is now read-only.

Commit 2a30e4f

Browse files
committed
Only construct Ref once
1 parent 3c66b6e commit 2a30e4f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ElixirWeb.iss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,8 @@ begin
213213
ReleaseType := rtIncompatible;
214214
end;
215215
216-
Ref := TObject.Create();
216+
if Ref = Null then
217+
Ref := TObject.Create();
217218
end;
218219
end;
219220
end;

0 commit comments

Comments
 (0)