summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/app_dial.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/apps/app_dial.c b/apps/app_dial.c
index 6c1501b63..2d15fbefc 100644
--- a/apps/app_dial.c
+++ b/apps/app_dial.c
@@ -419,7 +419,12 @@ static void senddialendevent(const struct ast_channel *src, const char *dialstat
src->name, dialstatus);
}
-/* helper function for wait_for_answer() */
+/*!
+ * helper function for wait_for_answer()
+ *
+ * XXX this code is highly suspicious, as it essentially overwrites
+ * the outgoing channel without properly deleting it.
+ */
static void do_forward(struct dial_localuser *o,
struct cause_args *num, struct ast_flags *peerflags, int single)
{
@@ -504,9 +509,9 @@ static void do_forward(struct dial_localuser *o,
char cidname[AST_MAX_EXTENSION];
ast_set_callerid(c, S_OR(in->macroexten, in->exten), get_cid_name(cidname, sizeof(cidname), in), NULL);
}
+ /* Hangup the original channel now, in case we needed it */
+ ast_hangup(c);
}
- /* Hangup the original channel now, in case we needed it */
- ast_hangup(c);
}
}