-
Notifications
You must be signed in to change notification settings - Fork 482
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WriteEntryToDirectory with GZipReader fails #831
Comments
As a follow up, this is probably a sketchy file header in the gzip file, looking at
Trivial workaround for now:
|
you're saying the entry.Key can be null? |
Correct. The ! on this line
is masking it, but it can be null (in possibly wierdly-formed files that open fine in 7Zip) |
Merged
0.37.0 has fixed null support so maybe this isn't an issue now? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The generic extraction mechanism implemented in ExtractionMethods.cs appears to fail for GZip files.
Path.Combine throws an exception at
sharpcompress/src/SharpCompress/Common/ExtractionMethods.cs
Line 60 in 900190c
due to fileName being null, which is set here
sharpcompress/src/SharpCompress/Common/ExtractionMethods.cs
Line 39 in 900190c
The text was updated successfully, but these errors were encountered: