From 500e22816dba73e318dd48135731d725040d67fc Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 6 Aug 2022 10:39:18 -0400 Subject: [PATCH] comment lol --- png.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/png.d b/png.d index be23235..f6fdfb6 100644 --- a/png.d +++ b/png.d @@ -1377,8 +1377,8 @@ struct LazyPngFile(LazyPngChunksProvider) auto err = inflate(zs, Z_SYNC_FLUSH); if (err != Z_STREAM_END && err != Z_OK) throw new Exception("PNG unpack error"); if (err == Z_STREAM_END) { - // this thing is malformed if(zs.avail_in != 0) { + // this thing is malformed.. // libpng would warn here "libpng warning: IDAT: Extra compressed data" // i used to just throw with the assertion on the next line // but now just gonna discard the extra data to be a bit more permissive