subprocess: Fix quote issue on Windows

Github-Pull: #29868
Rebased-From: 7d0fcb2fa68a24ef0db133e0d7929e897478dca4
This commit is contained in:
Hennadii Stepanov 2024-05-08 11:02:50 +01:00 committed by Luke Dashjr
parent 1a2cefdb80
commit e2d768731e

View File

@ -173,7 +173,7 @@ namespace util
//
if (force == false && argument.empty() == false &&
argument.find_first_of(L" \t\n\v\"") == argument.npos) {
argument.find_first_of(L" \t\n\v") == argument.npos) {
command_line.append(argument);
}
else {