1
0
Fork 0

Parser: Fix segfault in command extraction

Esse commit está contido em:
Albert S. 2018-11-05 10:46:06 +01:00
commit 538d9e8b2d
1 arquivos alterados com 4 adições e 1 exclusões

Ver arquivo

@ -71,7 +71,10 @@ std::string Parser::extractCommand(std::string cmdname, std::string content) con
if(std::regex_match(content, match, reg))
{
return match.str(2);
if(match.size() > 1)
{
return match.str(2);
}
}
return "";
}