From 5837a6394256f10b16d9a1fbc19be686ef2da2b6 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 8 Dec 2014 13:25:41 +0100 Subject: [PATCH] AllCommands: simplify the tokenizer loop --- src/command/AllCommands.cxx | 30 ++++++++++++++++-------------- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx index f740373de..b2d9f52d3 100644 --- a/src/command/AllCommands.cxx +++ b/src/command/AllCommands.cxx @@ -384,23 +384,25 @@ command_process(Client &client, unsigned num, char *line) /* now parse the arguments (quoted or unquoted) */ - while (argc < COMMAND_ARGV_MAX && - (argv[argc] = - tokenizer.NextParam(error)) != nullptr) - ++argc; + while (true) { + if (argc == COMMAND_ARGV_MAX) { + command_error(client, ACK_ERROR_ARG, + "Too many arguments"); + current_command = nullptr; + return CommandResult::ERROR; + } - /* some error checks */ + char *a = tokenizer.NextParam(error); + if (a == nullptr) { + if (tokenizer.IsEnd()) + break; - if (argc >= COMMAND_ARGV_MAX) { - command_error(client, ACK_ERROR_ARG, "Too many arguments"); - current_command = nullptr; - return CommandResult::ERROR; - } + command_error(client, ACK_ERROR_ARG, "%s", error.GetMessage()); + current_command = nullptr; + return CommandResult::ERROR; + } - if (!tokenizer.IsEnd()) { - command_error(client, ACK_ERROR_ARG, "%s", error.GetMessage()); - current_command = nullptr; - return CommandResult::ERROR; + argv[argc++] = a; } /* look up and invoke the command handler */