summaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDFWriter.cc
diff options
context:
space:
mode:
authorJay Berkenbilt <ejb@ql.org>2013-10-05 22:37:27 +0200
committerJay Berkenbilt <ejb@ql.org>2013-10-10 02:57:14 +0200
commite19eb579b221ade503d7d1ff0a6511d289863785 (patch)
tree8e0d330ff9d4132eadacc399affb7bcb1a1b5933 /libqpdf/QPDFWriter.cc
parent0bfe9024893ebb1f62108fe6c24410e6ba589c3e (diff)
downloadqpdf-e19eb579b221ade503d7d1ff0a6511d289863785.tar.zst
Replace some assertions with std::logic_error
Ideally, the library should never call assert outside of test code, but it does in several places. For some cases where the assertion might conceivably fail because of a problem with the input data, replace assertions with exceptions so that they can be trapped by the calling application. This commit surely misses some cases and replaced some cases unnecessarily, but it should still be an improvement.
Diffstat (limited to 'libqpdf/QPDFWriter.cc')
-rw-r--r--libqpdf/QPDFWriter.cc29
1 files changed, 22 insertions, 7 deletions
diff --git a/libqpdf/QPDFWriter.cc b/libqpdf/QPDFWriter.cc
index 863e753b..949652c5 100644
--- a/libqpdf/QPDFWriter.cc
+++ b/libqpdf/QPDFWriter.cc
@@ -772,7 +772,11 @@ QPDFWriter::bytesNeeded(unsigned long long n)
void
QPDFWriter::writeBinary(unsigned long long val, unsigned int bytes)
{
- assert(bytes <= sizeof(unsigned long long));
+ if (bytes > sizeof(unsigned long long))
+ {
+ throw std::logic_error(
+ "QPDFWriter::writeBinary called with too many bytes");
+ }
unsigned char data[sizeof(unsigned long long)];
for (unsigned int i = 0; i < bytes; ++i)
{
@@ -1097,7 +1101,11 @@ QPDFWriter::writeTrailer(trailer_e which, int size, bool xref_stream,
qpdf_offset_t pos = this->pipeline->getCount();
writeString(QUtil::int_to_string(prev));
int nspaces = pos - this->pipeline->getCount() + 21;
- assert(nspaces >= 0);
+ if (nspaces < 0)
+ {
+ throw std::logic_error(
+ "QPDFWriter: no padding required in trailer");
+ }
writePad(nspaces);
}
}
@@ -2814,9 +2822,11 @@ QPDFWriter::writeLinearized()
// place as in pass 1.
writePad(first_xref_end - endpos);
- // A failure of this insertion means we didn't allow
- // enough padding for the first pass xref stream.
- assert(this->pipeline->getCount() == first_xref_end);
+ if (this->pipeline->getCount() != first_xref_end)
+ {
+ throw std::logic_error(
+ "insufficient padding for first pass xref stream");
+ }
}
writeString("\n");
}
@@ -2897,8 +2907,13 @@ QPDFWriter::writeLinearized()
// If this assertion fails, maybe we didn't have
// enough padding above.
- assert(this->pipeline->getCount() ==
- second_xref_end + hint_length);
+ if (this->pipeline->getCount() !=
+ second_xref_end + hint_length)
+ {
+ throw std::logic_error(
+ "count mismatch after xref stream;"
+ " possible insufficient padding?");
+ }
}
}
else