Hello
i am getting an error while decompressing bytes. I am compressing them (reading them from a FileStream) and afterwards I am decompressing them using Utils.Decompress.
Its working most of the time, but with some parts, its not.
I get an error "inflating: "
Error seems to happen here:
n = (int) ((q <= WindowWrite ? WindowWrite : WindowEnd) - q);
WindowWrite = 7663
WindowEnd = 32768
q = 7663
So n = 0 and r = -5, this gives the error BufferError while Inflating...
Any hints?
Thanks
