aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/Pl_Count.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2021-01-04 17:55:28 +0100
committerJay Berkenbilt <ejb@ql.org>2021-01-04 21:17:35 +0100
commitdc92574c10f3e2516ec6445b88c5d584f40df4e5 (patch)
tree221eca0c948b2a19d7735027e514459694fca7dd /libqpdf/Pl_Count.cc
parenta9bdeeb0e0059cf702f63c04affbcb56ecc8a29e (diff)
downloadqpdf-dc92574c10f3e2516ec6445b88c5d584f40df4e5.tar.zst
Fix some pipelines to be safe if downstream write fails (fuzz issue 28262)
Diffstat (limited to 'libqpdf/Pl_Count.cc')
-rw-r--r--libqpdf/Pl_Count.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libqpdf/Pl_Count.cc b/libqpdf/Pl_Count.cc
index 8077092a..c35619b8 100644
--- a/libqpdf/Pl_Count.cc
+++ b/libqpdf/Pl_Count.cc
@@ -27,8 +27,8 @@ Pl_Count::write(unsigned char* buf, size_t len)
if (len)
{
this->m->count += QIntC::to_offset(len);
- getNext()->write(buf, len);
this->m->last_char = buf[len - 1];
+ getNext()->write(buf, len);
}
}