Parser: Fix segfault in command extraction
This commit is contained in:
parent
89c662385d
commit
f349c7dc00
@ -72,7 +72,11 @@ std::string Parser::extractCommand(std::string cmdname, std::string content) con
|
|||||||
if(std::regex_match(content, match, reg))
|
if(std::regex_match(content, match, reg))
|
||||||
{
|
{
|
||||||
|
|
||||||
|
if(match.size() > 1)
|
||||||
|
{
|
||||||
return match.str(2);
|
return match.str(2);
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user