projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
858ad8c
)
Fix dtmf buglet
author
Mark Spencer
<markster@digium.com>
Fri, 15 Aug 2003 22:45:26 +0000
(22:45 +0000)
committer
Mark Spencer
<markster@digium.com>
Fri, 15 Aug 2003 22:45:26 +0000
(22:45 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1345
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_festival.c
patch
|
blob
|
history
diff --git
a/apps/app_festival.c
b/apps/app_festival.c
index
56976c5
..
d9b2f46
100755
(executable)
--- a/
apps/app_festival.c
+++ b/
apps/app_festival.c
@@
-170,7
+170,7
@@
static int send_waveform_to_channel(struct ast_channel *chan, char *waveform, in
}
if (f->frametype == AST_FRAME_DTMF) {
ast_log(LOG_DEBUG, "User pressed a key\n");
- if (strchr(intkeys, f->subclass)) {
+ if (intkeys && strchr(intkeys, f->subclass)) {
res = f->subclass;
ast_frfree(f);
break;