Skip to content
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

Prevent panic when decompression input slice is empty #35

Merged
merged 2 commits into from
Aug 6, 2018

Conversation

folbricht
Copy link
Contributor

This returns an error instead of an index out of range panic when the src slice to Decompress() is empty. The function uses &src[0] without first confirming the length.

Copy link
Collaborator

@Viq111 Viq111 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi @folbricht,

Thanks a lot for contributing!
Your PR looks good, I would just suggest adding a test to ensure now (& in the future) that we have the corret behavior.

Mind adding a test for Decompress on empty silce ? (should be the same as

func TestEmptySlice(t *testing.T) {
)

@folbricht
Copy link
Contributor Author

Not a problem, test added. Thanks

Copy link
Collaborator

@Viq111 Viq111 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great thanks a lot!

Will merge once Travis tests are 💚

@Viq111 Viq111 merged commit 3f0f797 into DataDog:1.x Aug 6, 2018
@Viq111 Viq111 changed the title Don't panic when decomression input slice is empty Prevent panic when decompression input slice is empty Dec 28, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants