mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 04:49:07 +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);
|
||||
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;
|
||||
|
Loading…
Reference in New Issue
Block a user