From 69a8cf982687853e56d141b5d81501ec4a5e6fe0 Mon Sep 17 00:00:00 2001 From: markster Date: Thu, 10 Feb 2005 16:38:39 +0000 Subject: [PATCH] Fix (in an admittedly icky way) the CALL variable broken issues (bug #3549) git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5001 f38db490-d61c-443f-a65b-d21fe96a405b --- pbx.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pbx.c b/pbx.c index cbe9a5f02..30b6866fb 100755 --- a/pbx.c +++ b/pbx.c @@ -920,7 +920,8 @@ void pbx_retrieve_variable(struct ast_channel *c, const char *var, char **ret, c snprintf(workspace, workspacelen, "%d", c->cid.cid_tns); *ret = workspace; } - } + } else + goto icky; } else if (c && !strcmp(var, "DNID")) { if (c->cid.cid_dnid) { strncpy(workspace, c->cid.cid_dnid, workspacelen - 1); @@ -996,6 +997,7 @@ void pbx_retrieve_variable(struct ast_channel *c, const char *var, char **ret, c strncpy(workspace, c->language, workspacelen - 1); *ret = workspace; } else { +icky: if (headp) { AST_LIST_TRAVERSE(headp,variables,entries) { #if 0