* and one more fix to prevent endless loops

git-svn-id: trunk@19196 -
This commit is contained in:
Jonas Maebe 2011-09-23 19:16:48 +00:00
parent 3469942f34
commit 258869c8f1

View File

@ -360,7 +360,7 @@
l:=low(win2iconv_arr);
h:=high(win2iconv_arr);
repeat
i:=(l+h) shr 1;
i:=(l+h+1) shr 1;
ccp:=win2iconv_arr[i].cp;
if cp=ccp then
break;