You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 5, 2022. It is now read-only.
UnicodeReader can't actually detect UTF-32LE encodings. There's a big chain of if/else if/... blocks in the constructor that examine the first few bytes from an input stream. The blocks for detecting UTF-16LE and UTF-32LE are:
UnicodeReader can't actually detect UTF-32LE encodings. There's a big chain of if/else if/... blocks in the constructor that examine the first few bytes from an input stream. The blocks for detecting UTF-16LE and UTF-32LE are:
The condition for the UTF-32LE case:
can't be true unless the earlier case for UTF-16LE was also true:
So something that's UTF-32LE would be detected as UTF-16LE.
The text was updated successfully, but these errors were encountered: