From 5b4de10a129f8c95057b722779d93c4793a5725c Mon Sep 17 00:00:00 2001 From: Joshua Colp Date: Tue, 22 May 2007 12:58:38 +0000 Subject: [PATCH] Don't overwrite a pointer to the first channel... that is bad. (issue #9770 reported by tfbu) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@65376 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_features.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res_features.c b/res/res_features.c index f9e1cdbffa..f67919c0d0 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -2209,7 +2209,7 @@ static int action_bridge(struct mansession *s, const struct message *m) return 1; } - if (!(tmpchana = ast_channel_alloc(0, AST_STATE_DOWN, NULL, NULL, NULL, + if (!(tmpchanb = ast_channel_alloc(0, AST_STATE_DOWN, NULL, NULL, NULL, NULL, NULL, 0, "Bridge/%s", chanb->name))) { astman_send_error(s, m, "Unable to create temporary channels!"); ast_channel_free(tmpchana);