1
0
mirror of https://github.com/securego/gosec.git synced 2025-11-29 22:37:59 +02:00

fix unsafe check

This commit is contained in:
s7v7nislands
2016-10-25 11:57:05 +08:00
parent a4fd848bfc
commit 92dda9cc3b
2 changed files with 7 additions and 1 deletions

View File

@@ -35,7 +35,7 @@ func (r *UsingUnsafe) Match(n ast.Node, c *gas.Context) (gi *gas.Issue, err erro
func NewUsingUnsafe(conf map[string]interface{}) (r gas.Rule, n ast.Node) {
r = &UsingUnsafe{
pattern: regexp.MustCompile(`unsafe.*`),
pattern: regexp.MustCompile(`unsafe\..*`),
MetaData: gas.MetaData{
What: "Use of unsafe calls should be audited",
Severity: gas.Low,