Compare commits

...

3 Commits

Author SHA1 Message Date
Michael R Sweet
3b2f7e21d9
Prep for 1.5.1 release. 2025-03-28 14:39:59 -04:00
Michael R Sweet
7e01069c5a
Fix UTF-16 LE support (Issue #112) 2025-03-28 14:29:24 -04:00
Michael R Sweet
88839ccb56
Fix UTF-16 LE support (Issue #112) 2025-03-28 14:28:43 -04:00
2 changed files with 4 additions and 3 deletions

View File

@ -1,13 +1,14 @@
Changes in PDFio Changes in PDFio
================ ================
v1.5.1 - YYYY-MM-DD v1.5.1 - 2025-03-28
------------------- -------------------
- Fixed output of special characters in name values (Issue #106) - Fixed output of special characters in name values (Issue #106)
- 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
@ -528,7 +528,7 @@ pdfioDictGetString(pdfio_dict_t *dict, // I - Dictionary
*tempptr = '\0'; *tempptr = '\0';
} }
else if (!(value->value.binary.datalen & 1) && !memcmp(value->value.binary.data, "\376\377", 2)) else if (!(value->value.binary.datalen & 1) && !memcmp(value->value.binary.data, "\377\376", 2))
{ {
// Copy UTF-16 LE // Copy UTF-16 LE
int ch; // Unicode character int ch; // Unicode character