projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b6290e0
)
Don't crash if no arguments are passed.
author
Tilghman Lesher
<tilghman@meg.abyt.es>
Thu, 5 Nov 2009 17:08:02 +0000
(17:08 +0000)
committer
Tilghman Lesher
<tilghman@meg.abyt.es>
Thu, 5 Nov 2009 17:08:02 +0000
(17:08 +0000)
(closes issue #16119)
Reported by: thedavidfactor
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@228015
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
apps/app_externalivr.c
patch
|
blob
|
history
diff --git
a/apps/app_externalivr.c
b/apps/app_externalivr.c
index
7258181
..
2f64fb2
100644
(file)
--- a/
apps/app_externalivr.c
+++ b/
apps/app_externalivr.c
@@
-373,6
+373,11
@@
static int app_exec(struct ast_channel *chan, const char *data)
u->abort_current_sound = 0;
u->chan = chan;
+ if (ast_strlen_zero(data)) {
+ ast_log(LOG_WARNING, "ExternalIVR requires a command to execute\n");
+ return -1;
+ }
+
buf = ast_strdupa(data);
AST_STANDARD_APP_ARGS(eivr_args, buf);