From 073808aa50f0c78e2d6fea4f56f0b814b314eb42 Mon Sep 17 00:00:00 2001 From: m-holger Date: Tue, 26 Jul 2022 12:37:50 +0100 Subject: Code tidy : replace 0 with nullptr or true --- libqpdf/Pl_LZWDecoder.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libqpdf/Pl_LZWDecoder.cc') diff --git a/libqpdf/Pl_LZWDecoder.cc b/libqpdf/Pl_LZWDecoder.cc index 3a381899..7d02f291 100644 --- a/libqpdf/Pl_LZWDecoder.cc +++ b/libqpdf/Pl_LZWDecoder.cc @@ -14,7 +14,7 @@ Pl_LZWDecoder::Pl_LZWDecoder( byte_pos(0), bit_pos(0), bits_available(0), - code_change_delta(early_code_change ? 1 : 0), + code_change_delta(early_code_change), eod(false), last_code(256) { @@ -107,7 +107,7 @@ void Pl_LZWDecoder::addToTable(unsigned char next) { unsigned int last_size = 0; - unsigned char const* last_data = 0; + unsigned char const* last_data = nullptr; unsigned char tmp[1]; if (this->last_code < 256) { -- cgit v1.2.3-54-g00ecf