]> git.ipfire.org Git - thirdparty/asterisk.git/commit
main/bridge_channel: Fix channel reference leak on video source 11/4311/1
authorMatt Jordan <mjordan@digium.com>
Fri, 4 Nov 2016 20:37:57 +0000 (15:37 -0500)
committerMatt Jordan <mjordan@digium.com>
Fri, 4 Nov 2016 20:49:18 +0000 (15:49 -0500)
commite7dc536b7ae11abf0414b367d1125610dd858188
treeb6b72ed2bd58e6f8c6e61bd21a05fc96ada2d0a2
parentcb30963d222cb1e12af9bbf8dfed58001c9fcaf4
main/bridge_channel: Fix channel reference leak on video source

When a channel is made the video source, the bridge holds a reference to
it. Whenever the video source changes, that reference is released.
However, a ref leak does occur if the channel leaves the bridge (such as
being hung up) while it is the video source, as the bridge never
releases the ref in such a case.

This patch adds a line to the bridge_channel_internal_join routine such
that, when a channel finishes its time in the bridge, it notifies the
bridge via ast_bridge_remove_video_src that if it is a video source its
reference should be released.

ASTERISK-26555 #close

Change-Id: I3a2f5238a9d2fc49c591f0e65199d782ab0be76a
main/bridge_channel.c