mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 02:27:48 +02:00
fcl-js: writer: fixed writing invalid UTF-16
This commit is contained in:
parent
7633a39273
commit
e34698f1d5
@ -611,10 +611,9 @@ begin
|
||||
begin
|
||||
inc(I,2); // surrogate, two char codepoint
|
||||
continue;
|
||||
end
|
||||
else
|
||||
// invalid UTF-16, cannot be encoded as UTF-8 -> encode as hex
|
||||
R:=R+'\u'+TJSString(HexStr(ord(c),4));
|
||||
end;
|
||||
// invalid UTF-16, cannot be encoded as UTF-8 -> encode as hex
|
||||
R:=R+'\u'+TJSString(HexStr(ord(S[i]),4));
|
||||
end
|
||||
else
|
||||
// invalid UTF-16 at end of string, cannot be encoded as UTF-8 -> encode as hex
|
||||
|
Loading…
Reference in New Issue
Block a user