projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
27862b0
)
Don't increment the loop, now that incrementing is taken care of by the
author
Tilghman Lesher
<tilghman@meg.abyt.es>
Sat, 31 Jan 2009 16:40:59 +0000
(16:40 +0000)
committer
Tilghman Lesher
<tilghman@meg.abyt.es>
Sat, 31 Jan 2009 16:40:59 +0000
(16:40 +0000)
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
funcs/func_strings.c
patch
|
blob
|
history
diff --git
a/funcs/func_strings.c
b/funcs/func_strings.c
index
fa43752
..
cb8a98b
100644
(file)
--- a/
funcs/func_strings.c
+++ b/
funcs/func_strings.c
@@
-427,7
+427,7
@@
static int filter(struct ast_channel *chan, const char *cmd, char *parse, char *
}
/* Expand ranges */
- for (; *(args.allowed) && allowedlen < sizeof(allowed); (args.allowed)++) {
+ for (; *(args.allowed) && allowedlen < sizeof(allowed); ) {
char c1 = 0, c2 = 0;
size_t consumed = 0;