summaryrefslogtreecommitdiff
path: root/apps/app_controlplayback.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-11-26 14:31:32 +0000
committerJoshua Colp <jcolp@digium.com>2007-11-26 14:31:32 +0000
commit2c223a45126c793b9c3e4f10d6f798d4aea8f490 (patch)
tree26354eb7d7e4d7b50343663ea7651d738b88236a /apps/app_controlplayback.c
parentc31c9d6291aab485c33ee21e2a5346bd7da56b3c (diff)
Don't crash if the 'o' option of ControlPlayback is used without any value.
(closes issue #11375) Reported by: johan git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89570 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_controlplayback.c')
-rw-r--r--apps/app_controlplayback.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_controlplayback.c b/apps/app_controlplayback.c
index edf10a182..80df5926d 100644
--- a/apps/app_controlplayback.c
+++ b/apps/app_controlplayback.c
@@ -124,7 +124,7 @@ static int controlplayback_exec(struct ast_channel *chan, void *data)
if (args.options) {
ast_app_parse_options(cpb_opts, &opts, opt_args, args.options);
- if (ast_test_flag(&opts, OPT_OFFSET))
+ if (ast_test_flag(&opts, OPT_OFFSET) && !ast_strlen_zero(opt_args[OPT_ARG_OFFSET]))
offsetms = atol(opt_args[OPT_ARG_OFFSET]);
}