aboutsummaryrefslogtreecommitdiffstats
path: root/libqpdf/QPDF_Stream.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libqpdf/QPDF_Stream.cc')
-rw-r--r--libqpdf/QPDF_Stream.cc7
1 files changed, 2 insertions, 5 deletions
diff --git a/libqpdf/QPDF_Stream.cc b/libqpdf/QPDF_Stream.cc
index b5aac026..66916c21 100644
--- a/libqpdf/QPDF_Stream.cc
+++ b/libqpdf/QPDF_Stream.cc
@@ -292,12 +292,9 @@ QPDF_Stream::setDescription(
void
QPDF_Stream::setDictDescription()
{
- QPDF* qpdf = nullptr;
- std::string description;
- if ((!this->stream_dict.hasObjectDescription()) &&
- getDescription(qpdf, description)) {
+ if (!this->stream_dict.hasObjectDescription()) {
this->stream_dict.setObjectDescription(
- qpdf, description + " -> stream dictionary");
+ qpdf, getDescription() + " -> stream dictionary");
}
}