[asterisk-commits] tilghman: branch 1.6.1 r172708 - in /branches/1.6.1: ./ funcs/func_strings.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sat Jan 31 10:42:12 CST 2009
Author: tilghman
Date: Sat Jan 31 10:42:12 2009
New Revision: 172708
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=172708
Log:
Merged revisions 172706 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r172706 | tilghman | 2009-01-31 10:40:59 -0600 (Sat, 31 Jan 2009) | 7 lines
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)
........
Modified:
branches/1.6.1/ (props changed)
branches/1.6.1/funcs/func_strings.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/funcs/func_strings.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.1/funcs/func_strings.c?view=diff&rev=172708&r1=172707&r2=172708
==============================================================================
--- branches/1.6.1/funcs/func_strings.c (original)
+++ branches/1.6.1/funcs/func_strings.c Sat Jan 31 10:42:12 2009
@@ -99,7 +99,7 @@
}
/* 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;
More information about the asterisk-commits
mailing list