mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 21:10:01 +02: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