aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 16:01:16 +0000
committerroot <root@f38db490-d61c-443f-a65b-d21fe96a405b>2006-05-23 16:01:16 +0000
commitcc6e91422e06fcf597f039d73159505355474ac7 (patch)
tree2a354f68d5d8e7ccde6a3d68bab43ee15df078c7
parentdcf8705dd14807e3cd26cdf9c8bd7fc696cd4580 (diff)
automerge commit
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2-netsec@29702 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_features.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 30c00db27..885f4a7d7 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1433,6 +1433,9 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
featurecode = peer_featurecode;
}
featurecode[strlen(featurecode)] = f->subclass;
+ /* Get rid of the frame before we start doing "stuff" with the channels */
+ ast_frfree(f);
+ f = NULL;
config->feature_timer = backup_config.feature_timer;
res = ast_feature_interpret(chan, peer, config, featurecode, sense);
switch(res) {
@@ -1445,10 +1448,8 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
}
if (res >= FEATURE_RETURN_PASSDIGITS) {
res = 0;
- } else {
- ast_frfree(f);
+ } else
break;
- }
hasfeatures = !ast_strlen_zero(chan_featurecode) || !ast_strlen_zero(peer_featurecode);
if (hadfeatures && !hasfeatures) {
/* Restore backup */