From 7dcfec113808d1f3240957ea76db4b8e351e9a9e Mon Sep 17 00:00:00 2001 From: "METANEOCORTEX\\Kotti" Date: Sun, 28 Aug 2022 14:55:23 +0200 Subject: [PATCH] +fix: uninitialized variable, causing problems on copy multi-selection --- src/Edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Edit.c b/src/Edit.c index 5f10baecf..b44c4a10a 100644 --- a/src/Edit.c +++ b/src/Edit.c @@ -7267,7 +7267,7 @@ void EditSelectionMultiSelectAll() // void EditSelectionMultiSelectAllEx(HWND hwnd, CLPCEDITFINDREPLACE edFndRpl) { - EDITFINDREPLACE efr; + EDITFINDREPLACE efr = INIT_EFR_DATA; DuplicateEFR(&efr, edFndRpl); if (IsWindow(Globals.hwndDlgFindReplace)) {