aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-22 22:24:02 +0000
committermurf <murf@f38db490-d61c-443f-a65b-d21fe96a405b>2008-08-22 22:24:02 +0000
commit1ee24f80f75a7a78ae599898340faf7ab133d143 (patch)
tree3270f5103c8dd86aab4dac7d714c2acdaa926e32
parenta87b92cdb89bb382f70cb95da07208cef52ac6df (diff)
I found some problems with the code I committed earlier, when
I merged them into trunk, so I'm coming back to clean up. And, in the process, I found an error in the code I added to trunk and 1.6.x, that I'll fix using this patch also. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@139635 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--res/res_features.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 101ce09a0..1e16e9827 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1663,6 +1663,8 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
struct ast_cdr *swapper;
char savelastapp[AST_MAX_EXTENSION];
char savelastdata[AST_MAX_EXTENSION];
+ char save_exten[AST_MAX_EXTENSION];
+ int save_prio;
if (chan->cdr && ast_opt_end_cdr_before_h_exten) {
ast_cdr_end(bridge_cdr);
@@ -1674,6 +1676,8 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
ast_copy_string(savelastdata, bridge_cdr->lastdata, sizeof(bridge_cdr->lastdata));
chan->cdr = bridge_cdr;
ast_channel_lock(chan);
+ ast_copy_string(save_exten, chan->exten, sizeof(save_exten));
+ save_prio = chan->priority;
ast_copy_string(chan->exten, "h", sizeof(chan->exten));
chan->priority = 1;
ast_channel_unlock(chan);
@@ -1689,7 +1693,11 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
chan->priority++;
}
/* swap it back */
+ ast_channel_lock(chan);
+ ast_copy_string(chan->exten, save_exten, sizeof(chan->exten));
+ chan->priority = save_prio;
chan->cdr = swapper;
+ ast_channel_unlock(chan);
/* protect the lastapp/lastdata against the effects of the hangup/dialplan code */
ast_copy_string(bridge_cdr->lastapp, savelastapp, sizeof(bridge_cdr->lastapp));
ast_copy_string(bridge_cdr->lastdata, savelastdata, sizeof(bridge_cdr->lastdata));