dect
/
asterisk
Archived
13
0
Fork 0

If we can't transfer, be sure we hangup

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1359 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
markster 2003-08-18 05:23:10 +00:00
parent 166f660c0e
commit ed5ea9b2ad
1 changed files with 4 additions and 0 deletions

View File

@ -4473,6 +4473,10 @@ static int attempt_transfer(struct sip_pvt *p1, struct sip_pvt *p2)
}
} else {
ast_log(LOG_NOTICE, "Transfer attempted with no bridged calls to transfer\n");
if (p1->owner)
ast_softhangup(p1->owner, AST_SOFTHANGUP_DEV);
if (p2->owner)
ast_softhangup(p2->owner, AST_SOFTHANGUP_DEV);
return -1;
}
return 0;