You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have been using this library for a project and ran into a potential issue, and I am unsure if this is a problem with the library or with my code. Originally, I had code along the lines of this:
And it would always fail with MessageContainsOutOfBoundsPointer. However, when I replaced &mut BufReader::new(gzreader) with &uncompressed_data[..], where uncompressed_data was simply the fully uncompresed data, it would work. This solution works but is not ideal considering that my uncompressed data can be gigabytes in size.
The text was updated successfully, but these errors were encountered:
Hello,
I have been using this library for a project and ran into a potential issue, and I am unsure if this is a problem with the library or with my code. Originally, I had code along the lines of this:
And it would always fail with MessageContainsOutOfBoundsPointer. However, when I replaced
&mut BufReader::new(gzreader)
with&uncompressed_data[..]
, where uncompressed_data was simply the fully uncompresed data, it would work. This solution works but is not ideal considering that my uncompressed data can be gigabytes in size.The text was updated successfully, but these errors were encountered: