From f18439da5102eafe4ba2b79bf7399e3c7d79d93b Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 6 Mar 2013 16:29:20 +0900 Subject: [PATCH] windowscodecs: Add a comment to PNG decoder that Windows ignores CRC of the chunks. --- dlls/windowscodecs/pngformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windowscodecs/pngformat.c b/dlls/windowscodecs/pngformat.c index e4236e2382b..fb8bf51a846 100644 --- a/dlls/windowscodecs/pngformat.c +++ b/dlls/windowscodecs/pngformat.c @@ -76,7 +76,7 @@ static HRESULT read_png_chunk(IStream *stream, BYTE *type, BYTE **data, ULONG *d return hr; } - /* FIXME: Verify the CRC? */ + /* Windows ignores CRC of the chunk */ } return S_OK;