]> 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)
committerJoshua Colp <jcolp@sangoma.com>
Thu, 10 Sep 2020 10:56:44 +0000 (05:56 -0500)
commit2469c94a7afdfc283aa765c3205254e1c716109c
treed68b11b2858321ffdd3f7a67e61db7a90373396c
parentb0410c596094d91cef70a77f3add2cb374900194
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