From a3be4cb6d64d67d10c2af7397af25e570c551969 Mon Sep 17 00:00:00 2001 From: Stefan Markovic Date: Thu, 22 Feb 2024 11:06:28 +0100 Subject: [PATCH] Pass pipe name as arg --- src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp b/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp index 6302f0273a..83b975dad8 100644 --- a/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp +++ b/src/modules/FileLocksmith/FileLocksmithContextMenu/dllmain.cpp @@ -129,7 +129,7 @@ public: HRESULT result; - if (!RunNonElevatedEx(path.c_str(), L"", get_module_folderpath(g_hInst))) + if (!RunNonElevatedEx(path.c_str(), pipe_name, get_module_folderpath(g_hInst))) { result = E_FAIL; Trace::InvokedRet(result);