Avoid initializing the PNG row

It gets overwritten right after, and uncovers an error in the interlaced read
This commit is contained in:
ISSOtm
2022-04-24 13:19:18 +02:00
committed by Eldred Habert
parent 75b9d48990
commit d569c6392c

View File

@@ -310,7 +310,7 @@ public:
size_t nbRowBytes = png_get_rowbytes(png, info);
assert(nbRowBytes != 0);
std::vector<png_byte> row(nbRowBytes);
DefaultInitVec<png_byte> row(nbRowBytes);
if (interlaceType == PNG_INTERLACE_NONE) {
for (png_uint_32 y = 0; y < height; ++y) {