[asterisk-commits] tilghman: branch 1.6.0 r172707 - in /branches/1.6.0: ./ funcs/func_strings.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Sat Jan 31 10:41:48 CST 2009


Author: tilghman
Date: Sat Jan 31 10:41:48 2009
New Revision: 172707

URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=172707
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.0/   (props changed)
    branches/1.6.0/funcs/func_strings.c

Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.0/funcs/func_strings.c
URL: http://svn.digium.com/svn-view/asterisk/branches/1.6.0/funcs/func_strings.c?view=diff&rev=172707&r1=172706&r2=172707
==============================================================================
--- branches/1.6.0/funcs/func_strings.c (original)
+++ branches/1.6.0/funcs/func_strings.c Sat Jan 31 10:41:48 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