mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-07 09:39:33 +01:00
* and one more fix to prevent endless loops
git-svn-id: trunk@19196 -
This commit is contained in:
parent
3469942f34
commit
258869c8f1
@ -360,7 +360,7 @@
|
|||||||
l:=low(win2iconv_arr);
|
l:=low(win2iconv_arr);
|
||||||
h:=high(win2iconv_arr);
|
h:=high(win2iconv_arr);
|
||||||
repeat
|
repeat
|
||||||
i:=(l+h) shr 1;
|
i:=(l+h+1) shr 1;
|
||||||
ccp:=win2iconv_arr[i].cp;
|
ccp:=win2iconv_arr[i].cp;
|
||||||
if cp=ccp then
|
if cp=ccp then
|
||||||
break;
|
break;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user