[svn-commits] jpeeler: branch 1.8 r293159 - in /branches/1.8: ./ funcs/func_strings.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Oct 28 11:11:11 CDT 2010


Author: jpeeler
Date: Thu Oct 28 11:11:08 2010
New Revision: 293159

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=293159
Log:
Merged revisions 293158 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.6.2

........
  r293158 | jpeeler | 2010-10-28 11:09:40 -0500 (Thu, 28 Oct 2010) | 11 lines
  
  Fix infinite loop in FILTER(). 
  
  Specifically when you're using characters above \x7f or invalid character
  escapes (e.g. \xgg).
  
  (closes issue #18060)
  Reported by: wdoekes
  Patches: 
        issue18060_func_strings_filter_infinite_loop.patch uploaded by wdoekes (license 717)
  Tested by: wdoekes
........

Modified:
    branches/1.8/   (props changed)
    branches/1.8/funcs/func_strings.c

Propchange: branches/1.8/
------------------------------------------------------------------------------
Binary property 'branch-1.6.2-merged' - no diff available.

Modified: branches/1.8/funcs/func_strings.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.8/funcs/func_strings.c?view=diff&rev=293159&r1=293158&r2=293159
==============================================================================
--- branches/1.8/funcs/func_strings.c (original)
+++ branches/1.8/funcs/func_strings.c Thu Oct 28 11:11:08 2010
@@ -719,10 +719,10 @@
 
 		if (*(args.allowed) == '-') {
 			if (ast_get_encoded_char(args.allowed + 1, &c2, &consumed))
-				c2 = -1;
+				c2 = c1;
 			args.allowed += consumed + 1;
 
-			if ((c2 < c1 || c2 == -1) && !ast_opt_dont_warn) {
+			if ((unsigned char) c2 < (unsigned char) c1 && !ast_opt_dont_warn) {
 				ast_log(LOG_WARNING, "Range wrapping in FILTER(%s,%s).  This may not be what you want.\n", parse, args.string);
 			}
 
@@ -730,7 +730,7 @@
 			 * Looks a little strange, until you realize that we can overflow
 			 * the size of a char.
 			 */
-			for (ac = c1; ac != c2; ac++) {
+			for (ac = (unsigned char) c1; ac != (unsigned char) c2; ac++) {
 				bitfield[ac / 32] |= 1 << (ac % 32);
 			}
 			bitfield[ac / 32] |= 1 << (ac % 32);




More information about the svn-commits mailing list