mirror of
https://github.com/michaelrsweet/pdfio.git
synced 2025-04-03 23:46:44 +02:00
Fix UTF-16 LE support (Issue #112)
This commit is contained in:
parent
88839ccb56
commit
7e01069c5a
@ -528,7 +528,7 @@ pdfioDictGetString(pdfio_dict_t *dict, // I - Dictionary
|
||||
|
||||
*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
|
||||
int ch; // Unicode character
|
||||
|
Loading…
x
Reference in New Issue
Block a user