From 4f69ea928a52713689d89b088e1a416ab9938888 Mon Sep 17 00:00:00 2001 From: Lucas Mendes Date: Fri, 19 Apr 2019 16:33:49 +0200 Subject: [PATCH] res_indications: Fix indications remove command autocomplete We changed the validation of autocomplete parameter in the "indications remove" command to avoid continue the execution of the command after asking for autocomplete out of range parameters. ASTERISK-28391 Reported by: lmendes86 Change-Id: I92b24131fd02f2e3c7fec966eea6f7a663310d40 --- main/indications.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/main/indications.c b/main/indications.c index 1f77ca1d17..c0748441e0 100644 --- a/main/indications.c +++ b/main/indications.c @@ -764,9 +764,11 @@ static char *handle_cli_indication_remove(struct ast_cli_entry *e, int cmd, stru case CLI_GENERATE: if (a->pos == 2) { return complete_country(a); - } else if (a->pos == 3) { + } + if (a->pos == 3) { return complete_indications(a); } + return NULL; } if (a->argc != 3 && a->argc != 4) {