Has anyone experienced the following error while using the .NET Deflate Stream?

alt text

System.IndexOutOfRangeException: Index was outside the bounds of the array.
 at System.IO.Compression.HuffmanTree.CreateTable()
 at System.IO.Compression.Inflater.DecodeDynamicBlockHeader()
 at System.IO.Compression.Inflater.Decode()
 at System.IO.Compression.Inflater.Inflate(Byte[] bytes, Int32 offset, Int32 length)
 at System.IO.Compression.DeflateStream.Read(Byte[] array, Int32 offset, Int32 count)

This error occurs when decompressing a deflate stream read from disk. I am using simple indexed files with many small deflate encoded chunks in them. It is a very rare error, as only one compressed item out of several hundred thousand (or million) experience this error.

It seems that the HuffmanTree.CreateTable method exceptions and the routine attempts to fill the array beyond its limits.

I have tried allocating an array that is twice the size of the original for decompression and it still throws the error.

The decoded data seems to be intact, however, the routine keeps trying to decode and overflows the buffer.

I suppose I could just try/catch and detect if this error occurs and then attempt to deal with it.

Any insight into the problem would be appreciated.

(I have tried DotNetZip which is causing different issues in the 64 bit environment I am working in.)

link|improve this question
Out of curiosity: What are the issues with DotNetZip and 64-bit? – 0xA3 Aug 3 '10 at 18:53
@0xA3 - It really is the topic of another thread, however, I am creating a Ionic.Zlib.DeflateStream on a .NET memory stream and want to keep the MemoryStream open. There are large amounts of RAM being consumed compared to the .NET DeflateStream which may or may not be normal (I think DotNetZip is mulithreaded and may just consume more RAM and/or the stream or the memory it uses isn't being properly disposed of, while the .NET DeflateStream seems to be getting disposed.) – user113476 Aug 3 '10 at 19:07
Thanks a lot for the info. – 0xA3 Aug 3 '10 at 19:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown