From f897fdf802a0623ab999c6fcde3094296f22cb15 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Mon, 21 Sep 2015 02:57:05 +0200 Subject: [PATCH] fix, UB in feature #29 due to uninitialized bool --- src/ce_libmaneditor.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ce_libmaneditor.pas b/src/ce_libmaneditor.pas index 55f0b08c..4933a427 100644 --- a/src/ce_libmaneditor.pas +++ b/src/ce_libmaneditor.pas @@ -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;