1
0
Fork 0

DBG: use the correct string split on cmddirectexec

This commit is contained in:
mrexodia 2016-10-13 20:15:59 +02:00
parent 94561bb255
commit c4587670b3
No known key found for this signature in database
GPG Key ID: FC89E0AAA0C1AAD8
1 changed files with 1 additions and 1 deletions

View File

@ -275,7 +275,7 @@ bool cmddirectexec(const char* cmd)
return false;
StringList commands;
StringUtils::Split(cmd, ';');
StringUtils::Split(cmd, ';', commands);
for(auto & command : commands)
{
command = StringUtils::Trim(command);