-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/vet: check for http.Error followed by other statements in handler? #15205
Comments
I also wonder whether we should write a We can start with documenting this first, of course. |
CL https://golang.org/cl/21836 mentions this issue. |
Based on a quick scan of Google's Go code base, I think such a check would find several errors, but not without false positives. Sometimes an http.Error call and its subsequent return statement are separated by logging statements or error-counter increments. We could exempt any function calls with "log" or "Error" (or within Google, "Add") in their names. The false positives are easy to work around by transposing statements. |
Re-opening to consider vet checks. |
/cc @dominikh ;) |
Change https://golang.org/cl/214859 mentions this issue: |
Thanks for filing and following up on this bug! func h(w http.ResponseWriter, r *http.Request) {
if true {
http.Error(w, msg, code)
}
} func h(w http.ResponseWriter, r *http.Request) {
{
http.Error(w, msg, code)
}
} For all the other cases with missing terminating statements, and heuristically known terminating statements e.g. (log.Fatal*) it'll report the missing termination statements. I hope to get this in for Go1.15, but couldn't do it ASAP due an emergency. |
Using
go1.6
I recently saw code that did the following:
The assumption made was that http.Error() terminates the current handler in some magical way. Instead, Error simply sets the headers and writes the body message, and it is the programmer's responsibility to return. We should document this.
The text was updated successfully, but these errors were encountered: