]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
If no variables were passed into pbx_substitute_variables_helper_full(), then
authorRussell Bryant <russell@russellbryant.com>
Fri, 27 Apr 2007 16:14:11 +0000 (16:14 +0000)
committerRussell Bryant <russell@russellbryant.com>
Fri, 27 Apr 2007 16:14:11 +0000 (16:14 +0000)
don't even bother creating a temporary bogus channel, since that is only for
allowing certain functions to operate on the variables as if they were on a
channel.  Most importantly, this fixes a crash.
(issue #9613, reported by callguy, fixed by me)

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

main/pbx.c

index 1f6ccbd46c3b16d3cb8c3619252b6a674365660d..5a9d768d4dc9aafbe93605147c3b21399f5753fb 100644 (file)
@@ -1642,7 +1642,7 @@ static void pbx_substitute_variables_helper_full(struct ast_channel *c, struct v
                        parse_variable_name(vars, &offset, &offset2, &isfunction);
                        if (isfunction) {
                                /* Evaluate function */
-                               if (c)
+                               if (c || !headp)
                                        cp4 = ast_func_read(c, vars, workspace, VAR_BUF_SIZE) ? NULL : workspace;
                                else {
                                        struct varshead old;