Merged revisions 108469 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
r108469 | russell | 2008-03-13 15:26:28 -0500 (Thu, 13 Mar 2008) | 4 lines

Fix a couple uses of sprintf.  The second one could actually cause an overflow
of a stack buffer.  It's not a security issue though, it only depends on your
configuration.

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@108472 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2008-03-13 20:26:59 +00:00
parent 1a2b358588
commit 432cb90411
1 changed files with 2 additions and 2 deletions

View File

@ -779,9 +779,9 @@ static void findmeexec(struct fm_args *tpargs)
}
if (!strcmp(tpargs->context, ""))
sprintf(dialarg, "%s", number);
snprintf(dialarg, sizeof(dialarg), "%s", number);
else
sprintf(dialarg, "%s@%s", number, tpargs->context);
snprintf(dialarg, sizeof(dialarg), "%s@%s", number, tpargs->context);
tmpuser = ast_calloc(1, sizeof(*tmpuser));
if (!tmpuser) {