dect
/
asterisk
Archived
13
0
Fork 0

fix off by one errors in calls to ast_copy_string (bug #4600)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6084 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2005-07-11 21:05:35 +00:00
parent 27dfdd0b12
commit 291f01d41f
2 changed files with 2 additions and 2 deletions

View File

@ -1932,7 +1932,7 @@ static int try_calling(struct queue_ent *qe, const char *options, char *announce
tmp->member = cur; /* Never directly dereference! Could change on reload */
tmp->oldstatus = cur->status;
tmp->lastcall = cur->lastcall;
ast_copy_string(tmp->interface, cur->interface, sizeof(tmp->interface)-1);
ast_copy_string(tmp->interface, cur->interface, sizeof(tmp->interface));
/* If we're dialing by extension, look at the extension to know what to dial */
if ((newnum = strstr(tmp->interface, "/BYEXTENSION"))) {
newnum++;

View File

@ -6369,7 +6369,7 @@ static int check_user_full(struct sip_pvt *p, struct sip_request *req, int sipme
ast_copy_string(p->context, peer->context, sizeof(p->context));
ast_copy_string(p->peersecret, peer->secret, sizeof(p->peersecret));
ast_copy_string(p->peermd5secret, peer->md5secret, sizeof(p->peermd5secret));
ast_copy_string(p->language, peer->language, sizeof(p->language) -1);
ast_copy_string(p->language, peer->language, sizeof(p->language));
ast_copy_string(p->accountcode, peer->accountcode, sizeof(p->accountcode));
p->amaflags = peer->amaflags;
p->callgroup = peer->callgroup;