Merge "res_sorcery_memory_cache: Fix SEGV in some CLI commands"

This commit is contained in:
Joshua Colp 2016-02-27 08:50:20 -06:00 committed by Gerrit Code Review
commit a3c33a99c5
1 changed files with 3 additions and 3 deletions

View File

@ -1832,7 +1832,7 @@ static char *sorcery_memory_cache_expire(struct ast_cli_entry *e, int cmd, struc
}
}
if (a->argc > 6) {
if (a->argc < 5 || a->argc > 6) {
return CLI_SHOWUSAGE;
}
@ -1886,7 +1886,7 @@ static char *sorcery_memory_cache_stale(struct ast_cli_entry *e, int cmd, struct
}
}
if (a->argc > 6) {
if (a->argc < 5 || a->argc > 6) {
return CLI_SHOWUSAGE;
}
@ -1945,7 +1945,7 @@ static char *sorcery_memory_cache_populate(struct ast_cli_entry *e, int cmd, str
}
}
if (a->argc > 5) {
if (a->argc != 5) {
return CLI_SHOWUSAGE;
}