Hi!
icegridadmin command "service list ID" crashes the program.
In IceGrid/parser.cpp, function void Parser::listServices(), it is first ensured that list consisting of one argument is passed, and then list's second element is accessed (line 1549):
if(args.size() != 1)
// report and return;
string service = *(++args.begin());
although the variable is not used anywhere later.

Reply With Quote