mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 12:52:33 +00:00
Because ExecIf needs to reprocess arguments, it's best if we don't remove quotes during parsing.
(closes issue #16905) Reported by: ip-rob Patches: 20100303__issue16905.diff.txt uploaded by tilghman (license 14) Tested by: ip-rob git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@251884 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -235,13 +235,13 @@ static int execif_exec(struct ast_channel *chan, const char *data)
|
|||||||
} else {
|
} else {
|
||||||
/* Preferred syntax */
|
/* Preferred syntax */
|
||||||
|
|
||||||
AST_NONSTANDARD_APP_ARGS(expr, parse, '?');
|
AST_NONSTANDARD_RAW_ARGS(expr, parse, '?');
|
||||||
if (ast_strlen_zero(expr.remainder)) {
|
if (ast_strlen_zero(expr.remainder)) {
|
||||||
ast_log(LOG_ERROR, "Usage: ExecIf(<expr>?<appiftrue>(<args>)[:<appiffalse>(<args)])\n");
|
ast_log(LOG_ERROR, "Usage: ExecIf(<expr>?<appiftrue>(<args>)[:<appiffalse>(<args)])\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
AST_NONSTANDARD_APP_ARGS(apps, expr.remainder, ':');
|
AST_NONSTANDARD_RAW_ARGS(apps, expr.remainder, ':');
|
||||||
|
|
||||||
if (apps.t && (truedata = strchr(apps.t, '('))) {
|
if (apps.t && (truedata = strchr(apps.t, '('))) {
|
||||||
*truedata++ = '\0';
|
*truedata++ = '\0';
|
||||||
|
Reference in New Issue
Block a user