summaryrefslogtreecommitdiff
path: root/channels/chan_unistim.c
diff options
context:
space:
mode:
authorTilghman Lesher <tilghman@meg.abyt.es>2009-04-22 16:01:30 +0000
committerTilghman Lesher <tilghman@meg.abyt.es>2009-04-22 16:01:30 +0000
commit9cbd90a8648c381f1f673448be9d03091f12c7dd (patch)
tree491941750665f156e75bb8559d74b4de080a2293 /channels/chan_unistim.c
parentba6dab1a1b28785d699bf721e2b8eb538495927a (diff)
Do not continue to receive DTMF, when the channel is hungup and about to be destroyed.
(closes issue #14858) Reported by: barryf Patches: 20090421__bug14858.diff.txt uploaded by tilghman (license 14) Tested by: barryf git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@189911 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels/chan_unistim.c')
-rw-r--r--channels/chan_unistim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_unistim.c b/channels/chan_unistim.c
index 30f4395c3..127bfed45 100644
--- a/channels/chan_unistim.c
+++ b/channels/chan_unistim.c
@@ -2473,7 +2473,7 @@ static int unistim_do_senddigit(struct unistimsession *pte, char digit)
struct ast_frame f = { 0, };
struct unistim_subchannel *sub;
sub = pte->device->lines->subs[SUB_REAL];
- if (!sub->owner) {
+ if (!sub->owner || sub->alreadygone) {
ast_log(LOG_WARNING, "Unable to find subchannel in dtmf senddigit\n");
return -1;
}
@@ -4223,8 +4223,8 @@ static int unistim_senddigit_end(struct ast_channel *ast, char digit, unsigned i
sub = pte->device->lines->subs[SUB_REAL];
- if (!sub->owner) {
- ast_log(LOG_WARNING, "Unable to find subchannel in dtmf senddigiti_end\n");
+ if (!sub->owner || sub->alreadygone) {
+ ast_log(LOG_WARNING, "Unable to find subchannel in dtmf senddigit_end\n");
return -1;
}