Fix error message of openning file with '=' as end of file name
Ignore '=' at the end of a file name. Fix #13344, close #13917
This commit is contained in:
parent
4df27c8e8b
commit
3ea789caea
|
@ -111,7 +111,7 @@ void parseCommandLine(const TCHAR* commandLine, ParamVector& paramVector)
|
|||
{
|
||||
case '\"': //quoted filename, ignore any following whitespace
|
||||
{
|
||||
if (!isStringInArg && i > 0 && cmdLinePtr[i-1] == '=')
|
||||
if (!isStringInArg && !isInFile && i > 0 && cmdLinePtr[i-1] == '=')
|
||||
{
|
||||
isStringInArg = true;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue