aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Reserved.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2022-09-08 14:03:57 +0200
committerJay Berkenbilt <ejb@ql.org>2022-09-08 16:36:39 +0200
commitdba61da1bfb7e4d74c723f369d1c017df9707a14 (patch)
tree04c51f86dc066c710c23423fe178e051b20b49d9 /libqpdf/QPDF_Reserved.cc
parent264e25f391f83bcbeb60590f18ff96719b086454 (diff)
downloadqpdf-dba61da1bfb7e4d74c723f369d1c017df9707a14.tar.zst
Create a special "destroyed" type rather than using null
When a QPDF is destroyed, changing indirect objects to direct nulls makes them effectively disappear silently when they sneak into other places. Instead, we should treat this as an error. Adding a destroyed object type makes this possible.
Diffstat (limited to 'libqpdf/QPDF_Reserved.cc')
-rw-r--r--libqpdf/QPDF_Reserved.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/QPDF_Reserved.cc b/libqpdf/QPDF_Reserved.cc
index 420cf765..9e795e57 100644
--- a/libqpdf/QPDF_Reserved.cc
+++ b/libqpdf/QPDF_Reserved.cc
@@ -31,6 +31,6 @@ JSON
QPDF_Reserved::getJSON(int json_version)
{
throw std::logic_error(
- "QPDFObjectHandle: attempting to unparse a reserved object");
+ "QPDFObjectHandle: attempting to get JSON from a reserved object");
return JSON::makeNull();
}