Skip to content
Snippets Groups Projects
Commit a2ddc0bb authored by Tilghman Lesher's avatar Tilghman Lesher
Browse files

Don't increment the loop, now that incrementing is taken care of by the

decoder function.
(closes issue #14363)
 Reported by: andrew53
 Patches: 
       func_strings_filter.patch uploaded by andrew53 (license 519)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@172706 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent 27862b0d
Branches
Tags
No related merge requests found
...@@ -427,7 +427,7 @@ static int filter(struct ast_channel *chan, const char *cmd, char *parse, char * ...@@ -427,7 +427,7 @@ static int filter(struct ast_channel *chan, const char *cmd, char *parse, char *
} }
/* Expand ranges */ /* Expand ranges */
for (; *(args.allowed) && allowedlen < sizeof(allowed); (args.allowed)++) { for (; *(args.allowed) && allowedlen < sizeof(allowed); ) {
char c1 = 0, c2 = 0; char c1 = 0, c2 = 0;
size_t consumed = 0; size_t consumed = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment