]> git.ipfire.org Git - thirdparty/asterisk.git/commit
ARI: Ensure announcer channels are destroyed. 24/3024/4
authorMark Michelson <mmichelson@digium.com>
Mon, 13 Jun 2016 22:40:07 +0000 (17:40 -0500)
committerMark Michelson <mmichelson@digium.com>
Mon, 20 Jun 2016 14:41:26 +0000 (09:41 -0500)
commit11caa10cf5abae8abef91a887c30e81e8d38486a
treeb5d0f64742addfb0816bc0700e3c5fe99e32d157
parent827c47b7461dc037c66cc3afb2db439daa98cd96
ARI: Ensure announcer channels are destroyed.

Announcer channels were not being destroyed because the
stasis_app_control structure that referenced them was not being
destroyed. The control structure was not being destroyed because it was
not being unlinked from its container. It was not being unlinked from
its container because the after bridge callback for the announcer
channel was not being run. The after bridge callback was not being run
because the after bridge datastore was not being removed from the
channel on destruction. The channel was not being destroyed because the
hangup that used to destroy the channel was now only reducing the
reference count to one. The reference count of the channel was only
being reduced to one because the stasis_app_control structure was
holding the final reference...

The control structure used to not keep a reference to the channel, so
that loop described above did not happen.

The solution is to manually remove the control structure from its
container when the playback on a bridge is complete.

ASTERISK-26083 #close
Reported by Joshua Colp

Change-Id: I0ddc0f64484ea0016245800b409b567dfe85cfb4
include/asterisk/stasis_app.h
res/ari/resource_bridges.c
res/res_stasis.c