1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0025608: TKernel, NCollection_UtfIterator - fix iteration of surrogate pairs in UTF-16

This commit is contained in:
kgv 2014-12-13 15:00:07 +03:00 committed by bugmaster
parent 2283570591
commit 656ec77a10

View File

@ -114,7 +114,7 @@ void NCollection_UtfIterator<Type>::readUTF16()
if (aChar >= UTF16_SURROGATE_HIGH_START
&& aChar <= UTF16_SURROGATE_HIGH_END)
{
Standard_Utf32Char aChar2 = *myPosition;
const Standard_Utf32Char aChar2 = *myPosNext;
// complete the surrogate pair
if (aChar2 >= UTF16_SURROGATE_LOW_START
&& aChar2 <= UTF16_SURROGATE_LOW_END)