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;
|
idx: integer;
|
||||||
prj: TCEDubProject;
|
prj: TCEDubProject;
|
||||||
cdy: string;
|
cdy: string;
|
||||||
upd: boolean;
|
upd: boolean = false;
|
||||||
begin
|
begin
|
||||||
if not InputQuery('DUB library import', 'please enter the name of the package',
|
if not InputQuery('DUB library import', 'please enter the name of the package',
|
||||||
nme) then exit;
|
nme) then exit;
|
||||||
|
|
Loading…
Reference in New Issue