1
0
mirror of https://github.com/securego/gosec.git synced 2025-02-09 13:14:05 +02:00

Merge pull request #110 from GoASTScanner/bugfix

Improve specitivity of error message for GenDecl
This commit is contained in:
Grant Murphy 2017-01-11 10:25:58 -08:00 committed by GitHub
commit bc21a39c66

View File

@ -64,7 +64,7 @@ func (r *Credentials) matchGenDecl(decl *ast.GenDecl, ctx *gas.Context) (*gas.Is
index = len(valueSpec.Values) - 1 index = len(valueSpec.Values) - 1
} }
if rhs, ok := valueSpec.Values[index].(*ast.BasicLit); ok && rhs.Kind == token.STRING { if rhs, ok := valueSpec.Values[index].(*ast.BasicLit); ok && rhs.Kind == token.STRING {
return gas.NewIssue(ctx, decl, r.What, r.Severity, r.Confidence), nil return gas.NewIssue(ctx, valueSpec, r.What, r.Severity, r.Confidence), nil
} }
} }
} }