From 7a69e533cac4d137f87c34279b4e1ce6e1f94c1c Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Mon, 21 Oct 2013 13:45:10 -0400 Subject: [PATCH] transparency longer than palette shouldbe allowed --- png.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/png.d b/png.d index 161d9f0..2451b71 100644 --- a/png.d +++ b/png.d @@ -1125,7 +1125,8 @@ struct LazyPngFile(LazyPngChunksProvider) // 8 bit channel in same order as // palette - enforce(chunk.size < palette.length); + if(chunk.size > palette.length) + palette.length = chunk.size; foreach(i, a; chunk.payload) palette[i].a = a;