Merge branch 'dev' into updater

This commit is contained in:
Mario Hüttel 2021-04-07 13:19:53 +02:00
commit dca839ce2e
1 changed files with 2 additions and 2 deletions

View File

@ -106,7 +106,7 @@ static int parse_line(char *line, struct pl_command *cmd)
uint8_t token_idx = 0;
char *token;
const char * const delim = " \t";
const struct pl_command_list_map *map;
const struct pl_command_list_map *map = NULL;
char *endptr;
struct pl_command c;
@ -146,7 +146,7 @@ static int parse_line(char *line, struct pl_command *cmd)
token_idx++;
}
if (token_idx - 1 < map->expected_param_count) {
if (!map || (token_idx - 1 < map->expected_param_count)) {
return -3;
}