Skip to content
Snippets Groups Projects
Commit 3843480b authored by Mark Michelson's avatar Mark Michelson
Browse files

Fix potential crash if p->owner is NULL.

Problem was observed when a call-forwarding loop was accidentally
configured.

ABE-1906



git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@208229 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent b7928de6
No related branches found
No related tags found
No related merge requests found
......@@ -18869,11 +18869,11 @@ static void handle_response(struct sip_pvt *p, int resp, const char *rest, struc
case 301: /* Moved permanently */
case 302: /* Moved temporarily */
case 305: /* Use Proxy */
{
if (p->owner) {
struct ast_party_redirecting redirecting = {{0,},};
change_redirecting_information(p, req, &redirecting, TRUE);
ast_channel_set_redirecting(p->owner, &redirecting);
}
}
/* Fall through */
case 486: /* Busy here */
case 600: /* Busy everywhere */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment