transparency longer than palette shouldbe allowed

This commit is contained in:
Adam D. Ruppe 2013-10-21 13:45:10 -04:00
parent 7adb3922d9
commit 7a69e533ca
1 changed files with 2 additions and 1 deletions

3
png.d
View File

@ -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;