]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
(closes issue #12910)
authorSteve Murphy <murf@digium.com>
Sun, 22 Jun 2008 02:54:52 +0000 (02:54 +0000)
committerSteve Murphy <murf@digium.com>
Sun, 22 Jun 2008 02:54:52 +0000 (02:54 +0000)
Reported by: chris-mac

Sorry, my testing did not contain the simple case of forkCDR(v),
I am much embarrassed to admit.  If I had, I would have
more solidly initialized the opts element for varset.

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@124540 65c4cc65-6c06-0410-ace0-fbb531ad65f3

apps/app_forkcdr.c

index f8ab05f3fa7f2860fc25708121ab576073c707d6..dc53ef78bd8e3daaeb4a1ccea72abcd6487d3051 100644 (file)
@@ -234,10 +234,10 @@ static int forkcdr_exec(struct ast_channel *chan, void *data)
 
        AST_STANDARD_APP_ARGS(arglist, argcopy);
 
-       if (!ast_strlen_zero(arglist.options)) {
+       opts[OPT_ARG_VARSET] = 0;
+
+       if (!ast_strlen_zero(arglist.options))
                ast_app_parse_options(forkcdr_exec_options, &flags, opts, arglist.options);
-       } else
-               opts[OPT_ARG_VARSET] = 0;
        
        if (!ast_strlen_zero(data))
                ast_set2_flag(chan->cdr, ast_test_flag(&flags, OPT_KEEPVARS), AST_CDR_FLAG_KEEP_VARS);