You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: src/Core/Unix/CoreService.cpp
+5-1
Original file line number
Diff line number
Diff line change
@@ -314,7 +314,11 @@ namespace VeraCrypt
314
314
if (sudoAbsolutePath.empty())
315
315
throwSystemException(SRC_POS, errorMsg);
316
316
317
-
std::string popenCommand = sudoAbsolutePath + " -n true > /dev/null 2>&1"; // We redirect stderr to stdout (2>&1) to be able to catch the result of the command
std::string popenCommand = sudoAbsolutePath + " -n " + trueAbsolutePath + " > /dev/null 2>&1"; // We redirect stderr to stdout (2>&1) to be able to catch the result of the command
0 commit comments