We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When running decompress on a protected zip such as protected-AES-256.zip which has a password: 123, go-getter returns a panic in decompress_zip.go:77
123
Maybe to fix this panic:
srcF, err := f.Open() if err != nil { if srcF != nil { srcF.Close() } return err }
The text was updated successfully, but these errors were encountered:
fix(decompresser_zip): fix panic when decompressing protected zip file (
50599d6
hashicorp#343) Signed-off-by: João Reigota <[email protected]>
4553965
#343) (#344) Signed-off-by: João Reigota <[email protected]>
No branches or pull requests
When running decompress on a protected zip such as protected-AES-256.zip which has a password:
123
, go-getter returns a panic in decompress_zip.go:77Maybe to fix this panic:
The text was updated successfully, but these errors were encountered: