Merged revisions 89184 via svnmerge from

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

........
r89184 | tilghman | 2007-11-12 11:29:17 -0600 (Mon, 12 Nov 2007) | 5 lines

Fix two cases of memory corruption caused by background threads.
Reported by: atis
Patch by: tilghman
Fixes issue #10923

........


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89185 65c4cc65-6c06-0410-ace0-fbb531ad65f3
1.6.0
Tilghman Lesher 18 years ago
parent 2a0b16b663
commit 061e5a1674

@ -2423,10 +2423,18 @@ static int __sip_autodestruct(const void *data)
transmit_state_notify(p, AST_EXTENSION_DEACTIVATED, 1, TRUE); /* Send last notification */ transmit_state_notify(p, AST_EXTENSION_DEACTIVATED, 1, TRUE); /* Send last notification */
p->subscribed = NONE; p->subscribed = NONE;
append_history(p, "Subscribestatus", "timeout"); append_history(p, "Subscribestatus", "timeout");
ast_debug(3, "Re-scheduled destruction of SIP subsription %s\n", p->callid ? p->callid : "<unknown>"); ast_debug(3, "Re-scheduled destruction of SIP subscription %s\n", p->callid ? p->callid : "<unknown>");
return 10000; /* Reschedule this destruction so that we know that it's gone */ return 10000; /* Reschedule this destruction so that we know that it's gone */
} }
/* If there are packets still waiting for delivery, delay the destruction */
if (p->packets) {
if (option_debug > 2)
ast_log(LOG_DEBUG, "Re-scheduled destruction of SIP call %s\n", p->callid ? p->callid : "<unknown>");
append_history(p, "ReliableXmit", "timeout");
return 10000;
}
if (p->subscribed == MWI_NOTIFICATION) if (p->subscribed == MWI_NOTIFICATION)
if (p->relatedpeer) if (p->relatedpeer)
unref_peer(p->relatedpeer); /* Remove link to peer. If it's realtime, make sure it's gone from memory) */ unref_peer(p->relatedpeer); /* Remove link to peer. If it's realtime, make sure it's gone from memory) */

@ -1418,6 +1418,8 @@ int ast_hangup(struct ast_channel *chan)
chan->audiohooks = NULL; chan->audiohooks = NULL;
} }
ast_autoservice_stop(chan);
if (chan->masq) { if (chan->masq) {
if (ast_do_masquerade(chan)) if (ast_do_masquerade(chan))
ast_log(LOG_WARNING, "Failed to perform masquerade\n"); ast_log(LOG_WARNING, "Failed to perform masquerade\n");

Loading…
Cancel
Save