Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mcs/class/I18N/CJK/GB18030Encoding.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/mcs/class/I18N/CJK/GB18030Encoding.cs b/mcs/class/I18N/CJK/GB18030Encoding.cs
index f62121e81f0..6f21c253475 100644
--- a/mcs/class/I18N/CJK/GB18030Encoding.cs
+++ b/mcs/class/I18N/CJK/GB18030Encoding.cs
@@ -430,10 +430,9 @@ namespace I18N.CJK
}
#else
- public override int GetByteCount(char[] chars, int index, int count, bool refresh)
+ public override int GetByteCount(char[] chars, int start, int count, bool refresh)
{
- int start = 0;
- int end = count;
+ int end = start + count;
int ret = 0;
while (start < end)
{