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

False positive when using httptest.NewRecorder() #47

Closed
SergeShpak opened this issue Apr 19, 2023 · 0 comments · Fixed by #48
Closed

False positive when using httptest.NewRecorder() #47

SergeShpak opened this issue Apr 19, 2023 · 0 comments · Fixed by #48

Comments

@SergeShpak
Copy link
Contributor

This code triggers a false positive:

func issues() {
	w := httptest.NewRecorder()
	resp := w.Result()
	defer func() {
		_ = resp.Body.Close()
	}()
	_, _ = io.ReadAll(resp.Body)
}
This was referenced Apr 19, 2023
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 a pull request may close this issue.

1 participant