Skip to content

Commit 14ed63d

Browse files
ccojocarCosmin Cojocar
authored and
Cosmin Cojocar
committed
Do not flag the unhandled errors which are explicitly ignored
fixes #270
1 parent 12400f9 commit 14ed63d

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

rules/errors.go

-12
Original file line numberDiff line numberDiff line change
@@ -51,18 +51,6 @@ func returnsError(callExpr *ast.CallExpr, ctx *gosec.Context) int {
5151

5252
func (r *noErrorCheck) Match(n ast.Node, ctx *gosec.Context) (*gosec.Issue, error) {
5353
switch stmt := n.(type) {
54-
case *ast.AssignStmt:
55-
for _, expr := range stmt.Rhs {
56-
if callExpr, ok := expr.(*ast.CallExpr); ok && r.whitelist.ContainsCallExpr(expr, ctx, false) == nil {
57-
pos := returnsError(callExpr, ctx)
58-
if pos < 0 || pos >= len(stmt.Lhs) {
59-
return nil, nil
60-
}
61-
if id, ok := stmt.Lhs[pos].(*ast.Ident); ok && id.Name == "_" {
62-
return gosec.NewIssue(ctx, n, r.ID(), r.What, r.Severity, r.Confidence), nil
63-
}
64-
}
65-
}
6654
case *ast.ExprStmt:
6755
if callExpr, ok := stmt.X.(*ast.CallExpr); ok && r.whitelist.ContainsCallExpr(stmt.X, ctx, false) == nil {
6856
pos := returnsError(callExpr, ctx)

testutils/source.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ func test() (int,error) {
184184
func main() {
185185
v, _ := test()
186186
fmt.Println(v)
187-
}`}, 1}, {[]string{`
187+
}`}, 0}, {[]string{`
188188
package main
189189
import (
190190
"io/ioutil"
@@ -206,7 +206,7 @@ func main() {
206206
a()
207207
b()
208208
c()
209-
}`}, 3}, {[]string{`
209+
}`}, 2}, {[]string{`
210210
package main
211211
import "fmt"
212212
func test() error {

0 commit comments

Comments
 (0)