mirror of https://gitlab.com/basile.b/dexed.git
fix, UB in feature #29 due to uninitialized bool
This commit is contained in:
parent
6ff2371ea2
commit
f897fdf802
|
@ -146,7 +146,7 @@ var
|
|||
idx: integer;
|
||||
prj: TCEDubProject;
|
||||
cdy: string;
|
||||
upd: boolean;
|
||||
upd: boolean = false;
|
||||
begin
|
||||
if not InputQuery('DUB library import', 'please enter the name of the package',
|
||||
nme) then exit;
|
||||
|
|
Loading…
Reference in New Issue