diff options
Diffstat (limited to '')
-rw-r--r-- | src/command/AllCommands.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/AllCommands.cxx b/src/command/AllCommands.cxx index d79f1e6f9..989418ea5 100644 --- a/src/command/AllCommands.cxx +++ b/src/command/AllCommands.cxx @@ -360,7 +360,7 @@ command_process(Client &client, unsigned num, char *line) Tokenizer tokenizer(line); - char *argv[COMMAND_ARGV_MAX] = { nullptr }; + char *argv[COMMAND_ARGV_MAX]; argv[0] = tokenizer.NextWord(error); if (argv[0] == nullptr) { current_command = ""; |