Hi All
Im a newbie to Zlib and using it for data compression
Im using the option Z_SYNC_FLUSH for deflate and inflate method calls
but I see that the first inflate call succeeds but the second call fails
with an error message "invalid stored block lengths"
What does this error message mean...
Can any body help
Anand
|
|
0
|
|
|
|
Reply
|
anand_fds
|
10/29/2003 7:25:23 PM |
|
anand_fds@yahoo.com (Anand CS) wrote in message news:<7cccd2d3.0310291125.1c025363@posting.google.com>...
> Im using the option Z_SYNC_FLUSH for deflate and inflate method calls
> but I see that the first inflate call succeeds but the second call fails
> with an error message "invalid stored block lengths"
>
> What does this error message mean...
It means that you made a mistake somewhere. Either you did not get
all of the data from deflate, or you did not transfer the data
properly to inflate, or you are using inflate incorrectly somehow.
mark
|
|
0
|
|
|
|
Reply
|
madler
|
10/30/2003 5:59:42 AM
|
|