mirror of
https://github.com/reactos/CMake.git
synced 2024-11-28 22:10:32 +00:00
BUG: Fix ExpandListArgument when the string ends in a backslash.
This commit is contained in:
parent
51fe906ab7
commit
9bfe711ef1
@ -1152,6 +1152,11 @@ void cmSystemTools::ExpandListArgument(const std::string& arg,
|
||||
{
|
||||
newArgVec.push_back(*c);
|
||||
}
|
||||
else
|
||||
{
|
||||
// Terminate the loop properly.
|
||||
--c;
|
||||
}
|
||||
}
|
||||
} break;
|
||||
case '[':
|
||||
|
Loading…
Reference in New Issue
Block a user