mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-05 12:16:00 +00:00
Coverity Report: Fix issues for error type REVERSE_INULL (deprecated modules)
* Fix only issue pointed out by deprecated_REVERSE_INULL.txt for app_meetme.c in find_user(). * Change use of %i to %d in sscanf() in find_user(). The use of %i gives unexpected parsing because it can accept hex, octal, and decimal integer formats. * Changed other uses of %i in app_meetme() to use %d for consistency. (issue ASTERISK-19648) Reported by: Matt Jordan ........ Merged revisions 367906 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 367907 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@367908 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -3147,7 +3147,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
|
||||
"Channel: %s\r\n"
|
||||
"Uniqueid: %s\r\n"
|
||||
"Meetme: %s\r\n"
|
||||
"Usernum: %i\r\n"
|
||||
"Usernum: %d\r\n"
|
||||
"Status: on\r\n",
|
||||
ast_channel_name(chan), ast_channel_uniqueid(chan), conf->confno, user->user_no);
|
||||
}
|
||||
@@ -3165,7 +3165,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
|
||||
"Channel: %s\r\n"
|
||||
"Uniqueid: %s\r\n"
|
||||
"Meetme: %s\r\n"
|
||||
"Usernum: %i\r\n"
|
||||
"Usernum: %d\r\n"
|
||||
"Status: off\r\n",
|
||||
ast_channel_name(chan), ast_channel_uniqueid(chan), conf->confno, user->user_no);
|
||||
}
|
||||
@@ -3178,7 +3178,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
|
||||
"Channel: %s\r\n"
|
||||
"Uniqueid: %s\r\n"
|
||||
"Meetme: %s\r\n"
|
||||
"Usernum: %i\r\n"
|
||||
"Usernum: %d\r\n"
|
||||
"Status: on\r\n",
|
||||
ast_channel_name(chan), ast_channel_uniqueid(chan), conf->confno, user->user_no);
|
||||
}
|
||||
@@ -3191,7 +3191,7 @@ static int conf_run(struct ast_channel *chan, struct ast_conference *conf, struc
|
||||
"Channel: %s\r\n"
|
||||
"Uniqueid: %s\r\n"
|
||||
"Meetme: %s\r\n"
|
||||
"Usernum: %i\r\n"
|
||||
"Usernum: %d\r\n"
|
||||
"Status: off\r\n",
|
||||
ast_channel_name(chan), ast_channel_uniqueid(chan), conf->confno, user->user_no);
|
||||
}
|
||||
@@ -4579,8 +4579,7 @@ static struct ast_conf_user *find_user(struct ast_conference *conf, const char *
|
||||
struct ast_conf_user *user = NULL;
|
||||
int cid;
|
||||
|
||||
sscanf(callerident, "%30i", &cid);
|
||||
if (conf && callerident) {
|
||||
if (conf && callerident && sscanf(callerident, "%30d", &cid) == 1) {
|
||||
user = ao2_find(conf->usercontainer, &cid, 0);
|
||||
/* reference decremented later in admin_exec */
|
||||
return user;
|
||||
|
Reference in New Issue
Block a user