]> git.ipfire.org Git - thirdparty/asterisk.git/commit
Bridging: Use a ref to bridge_channel's channel to prevent crash.
authorBen Ford <bford@digium.com>
Mon, 31 Aug 2020 16:14:20 +0000 (11:14 -0500)
committerFriendly Automation <jenkins2@gerrit.asterisk.org>
Wed, 9 Sep 2020 23:18:08 +0000 (18:18 -0500)
commit7eaae4e7b600ec0aecd6e30b75d89c99241d31fa
treeb59a91f25effabc861872008f2b721be039569db
parentf589985840b95004aa5188a2d6a1b6920520648a
Bridging: Use a ref to bridge_channel's channel to prevent crash.

There's a race condition with bridging where a bridge can be torn down
causing the bridge_channel's ast_channel to become NULL when it's still
needed. This particular case happened with attended transfers, but the
crash occurred when trying to publish a stasis message. Now, the
bridge_channel is locked, a ref to the ast_channel is obtained, and that
ref is passed down the chain.

Change-Id: Ic48715c0c041615d17d286790ae3e8c61bb28814
include/asterisk/bridge_channel.h
main/bridge.c
main/bridge_channel.c