summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2005-01-15 06:37:51 +0000
committerMark Spencer <markster@digium.com>2005-01-15 06:37:51 +0000
commit122b11ec211c76c2095edec8260b20689b1f63d0 (patch)
tree0887e771a85769ef6fa72b13e181748739f6ae88 /channel.c
parent99e2b961c2623c5e84365806874878730952f1ad (diff)
Handle masq properly when clone channel has no vars (bug 3344)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4796 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/channel.c b/channel.c
index 24a935151..0d1c5da06 100755
--- a/channel.c
+++ b/channel.c
@@ -2317,7 +2317,8 @@ static void clone_variables(struct ast_channel *original, struct ast_channel *cl
/* Append variables from clone channel into original channel */
/* XXX Is this always correct? We have to in order to keep MACROS working XXX */
- AST_LIST_INSERT_TAIL(&original->varshead, AST_LIST_FIRST(&clone->varshead), entries);
+ if (AST_LIST_FIRST(&clone->varshead))
+ AST_LIST_INSERT_TAIL(&original->varshead, AST_LIST_FIRST(&clone->varshead), entries);
}
/* Assumes channel will be locked when called */