dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 72125 via svnmerge from

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

........
r72125 | qwell | 2007-06-27 12:10:32 -0500 (Wed, 27 Jun 2007) | 4 lines

Don't modify a variable that we don't want modified.  Make a copy of it instead.

Issue 10029, patch by phsultan with slight modifications by me (to remove needless casts).

Note: chan_jingle in trunk does not appear to have the same bug.

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@72134 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
qwell 2007-06-27 17:14:31 +00:00
parent 6e96b01e27
commit c7c4b670f7
1 changed files with 6 additions and 7 deletions

View File

@ -969,15 +969,14 @@ static struct ast_channel *gtalk_new(struct gtalk *client, struct gtalk_pvt *i,
/* Don't use ast_set_callerid() here because it will
* generate a needless NewCallerID event */
if (!strcasecmp(client->name, "guest")) {
if (strchr(i->them, '/')) {
char *aux;
data = ast_strdupa((char *)i->them);
aux = data;
cid = strsep(&aux, "/");
data = ast_strdupa(i->them);
if (strchr(data, '/')) {
cid = strsep(&data, "/");
} else
cid = i->them;
cid = data;
} else {
cid = client->user;
data = ast_strdupa(client->user);
cid = data;
}
cid = strsep(&cid, "@");
tmp->cid.cid_num = ast_strdup(cid);