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