dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 70084 via svnmerge from

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

........
r70084 | russell | 2007-06-19 14:13:45 -0500 (Tue, 19 Jun 2007) | 3 lines

Only attempt to queue a hangup on the owner channel if it actually exists.
(issue #9795, patch from zandbelt)

........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@70088 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2007-06-19 19:15:03 +00:00
parent 3bcef6267c
commit 8e6636ad66
2 changed files with 4 additions and 3 deletions

View File

@ -690,10 +690,10 @@ static int gtalk_hangup_farend(struct gtalk *client, ikspak *pak)
if(!from)
from = client->connection->jid->full;
if (tmp) {
tmp->alreadygone = 1;
ast_queue_hangup(tmp->owner);
if (tmp->owner)
ast_queue_hangup(tmp->owner);
} else
ast_log(LOG_NOTICE, "Whoa, didn't find call!\n");
gtalk_response(client, from, pak, NULL, NULL);

View File

@ -571,7 +571,8 @@ static int jingle_hangup_farend(struct jingle *client, ikspak *pak)
if (tmp) {
tmp->alreadygone = 1;
ast_queue_hangup(tmp->owner);
if (tmp->owner)
ast_queue_hangup(tmp->owner);
} else
ast_log(LOG_NOTICE, "Whoa, didn't find call!\n");
jingle_response(client, pak, NULL, NULL);