mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-18 15:49:56 +00:00
Blank argument crashes Asterisk
(closes issue #14377) Reported by: amorsen git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@172741 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -9627,6 +9627,11 @@ static int acf_mailbox_exists(struct ast_channel *chan, const char *cmd, char *a
|
||||
|
||||
AST_NONSTANDARD_APP_ARGS(arg, args, '@');
|
||||
|
||||
if (ast_strlen_zero(arg.mbox)) {
|
||||
ast_log(LOG_ERROR, "MAILBOX_EXISTS requires an argument (<mailbox>[@<context>])\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
ast_copy_string(buf, find_user(&svm, ast_strlen_zero(arg.context) ? "default" : arg.context, arg.mbox) ? "1" : "0", len);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user