From 5ca813a5649bf59c2eee599f7c423a44d19e5cf4 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Thu, 15 Feb 2001 14:01:18 +0000 Subject: [PATCH] 0..255 --- ext/standard/string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/standard/string.c b/ext/standard/string.c index 6b81ee03ab..2cdd40d51d 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2937,7 +2937,7 @@ PHP_FUNCTION(count_chars) array_init(return_value); } - for (inx=0; inx < 255; inx++) { + for (inx=0; inx < 256; inx++) { switch (mymode) { case 0: add_index_long(return_value,inx,chars[inx]); -- 2.50.1