summaryrefslogtreecommitdiff
path: root/apps/app_followme.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2008-11-18 18:31:08 +0000
committerMark Michelson <mmichelson@digium.com>2008-11-18 18:31:08 +0000
commitd91f1df3e0f5270ca8b0d503e32ce466b6899f00 (patch)
tree9d7c49be024ce0c889bfbb0d0299794cb862daec /apps/app_followme.c
parentf68bfa4ff35b6088f736def9e0c98ac181b1238b (diff)
Merged revisions 157305 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r157305 | mmichelson | 2008-11-18 12:25:55 -0600 (Tue, 18 Nov 2008) | 12 lines Fix a crash in the end_bridge_callback of app_dial and app_followme which would occur at the end of an attended transfer. The error occurred because we initially stored a pointer to an ast_channel which then was hung up due to a masquerade. This commit adds a "fixup" callback to the bridge_config structure to allow for end_bridge_callback_data to be changed in the case that a new channel pointer is needed for the end_bridge_callback. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@157306 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_followme.c')
-rw-r--r--apps/app_followme.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/app_followme.c b/apps/app_followme.c
index 1d324bdc2..454a64203 100644
--- a/apps/app_followme.c
+++ b/apps/app_followme.c
@@ -992,6 +992,11 @@ static void end_bridge_callback(void *data)
ast_channel_unlock(chan);
}
+static void end_bridge_callback_data_fixup(struct ast_bridge_config *bconfig, struct ast_channel *originator, struct ast_channel *terminator)
+{
+ bconfig->end_bridge_callback_data = originator;
+}
+
static int app_exec(struct ast_channel *chan, void *data)
{
struct fm_args targs;
@@ -1116,6 +1121,7 @@ static int app_exec(struct ast_channel *chan, void *data)
ast_set_flag(&(config.features_caller), AST_FEATURE_AUTOMON);
config.end_bridge_callback = end_bridge_callback;
config.end_bridge_callback_data = chan;
+ config.end_bridge_callback_data_fixup = end_bridge_callback_data_fixup;
ast_moh_stop(caller);
/* Be sure no generators are left on it */