This corrects the crash condition present in #7575, but I'm not really sure if it's the "right" fix. Please review and make any adjustments you see necessary.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@38051 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
BJ Weschke 2006-07-21 19:10:58 +00:00
parent ca9ba719b6
commit f2611e36c3
1 changed files with 2 additions and 3 deletions

View File

@ -11239,11 +11239,10 @@ static void handle_response_invite(struct sip_pvt *p, int resp, char *rest, stru
build_route(p, req, 1);
}
if (p->owner && (p->owner->_state == AST_STATE_UP)) { /* if this is a re-invite */
struct ast_channel *bridgepeer = NULL;
struct ast_channel *bridgepeer = NULL;
if (p->owner && (p->owner->_state == AST_STATE_UP) && (bridgepeer = ast_bridged_channel(p->owner))) { /* if this is a re-invite */
struct sip_pvt *bridgepvt = NULL;
bridgepeer = ast_bridged_channel(p->owner);
if (!bridgepeer->tech) {
ast_log(LOG_WARNING, "Ooooh.. no tech! That's REALLY bad\n");
break;