Fix UTF-16 LE support (Issue #112)

This commit is contained in:
Michael R Sweet 2025-03-28 14:28:43 -04:00
parent ebd5aab39b
commit 88839ccb56
No known key found for this signature in database
GPG Key ID: BE67C75EC81F3244
2 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ v1.5.1 - YYYY-MM-DD
- Fixed output of special characters in string values (Issue #107) - Fixed output of special characters in string values (Issue #107)
- Fixed output of large integers in dictionaries (Issue #108) - Fixed output of large integers in dictionaries (Issue #108)
- Fixed handling of 0-length streams (Issue #111) - Fixed handling of 0-length streams (Issue #111)
- Fixed detection of UTF-16 Big-Endian strings (Issue #112)
v1.5.0 - 2025-03-06 v1.5.0 - 2025-03-06

View File

@ -469,7 +469,7 @@ pdfioDictGetString(pdfio_dict_t *dict, // I - Dictionary
*tempptr; // Pointer into temporary string *tempptr; // Pointer into temporary string
unsigned char *dataptr; // Pointer into the data string unsigned char *dataptr; // Pointer into the data string
if (!(value->value.binary.datalen & 1) && !memcmp(value->value.binary.data, "\377\376", 2)) if (!(value->value.binary.datalen & 1) && !memcmp(value->value.binary.data, "\376\377", 2))
{ {
// Copy UTF-16 BE // Copy UTF-16 BE
int ch; // Unicode character int ch; // Unicode character