aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2018-02-18 00:47:57 +0100
committerJay Berkenbilt <ejb@ql.org>2018-02-19 03:06:27 +0100
commit4bb3046f0b139337a00e9182c9b47d1a3f8f8bb3 (patch)
tree455bf56b35aeda95a9e4581f7e0c31cf7d07c877 /ChangeLog
parent2780a1871d2603e9b273580fb7978d277832c2fc (diff)
downloadqpdf-4bb3046f0b139337a00e9182c9b47d1a3f8f8bb3.tar.zst
Properly handle strings with PDF Doc Encoding (fixes #179)
The QPDF_String::getUTF8Val() method was not treating strings that weren't explicitly Unicode as PDF Doc Encoded. This only affects characters in the range 0x80 through 0xa0.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog3
1 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c9e581e..8c78fb9d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2018-02-17 Jay Berkenbilt <ejb@ql.org>
+ * Fix QPDFObjectHandle::getUTF8Val() to properly handle strings
+ that are encoded with PDF Doc Encoding. Fixes #179.
+
* Add qpdf_check_pdf to the "C" API. This method just attempts to
read the entire file and produce no output, making possible to
assess whether the file has any errors that qpdf can detect.