mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
Address go vet failure in SQL rule
This commit is contained in:
parent
344ebd1ab6
commit
686927c894
1 changed files with 4 additions and 2 deletions
|
@ -30,10 +30,12 @@ type SqlStrConcat struct {
|
||||||
SqlStatement
|
SqlStatement
|
||||||
}
|
}
|
||||||
|
|
||||||
// see if we can figgure out what it is
|
// see if we can figure out what it is
|
||||||
func (s *SqlStrConcat) checkObject(n *ast.Ident) bool {
|
func (s *SqlStrConcat) checkObject(n *ast.Ident) bool {
|
||||||
if n.Obj != nil {
|
if n.Obj != nil {
|
||||||
return (n.Obj.Kind != ast.Var || n.Obj.Kind != ast.Fun)
|
// TODO(gm): Revisit logic used here.
|
||||||
|
//return (n.Obj.Kind != ast.Var || n.Obj.Kind != ast.Fun)
|
||||||
|
return n.Obj.Kind != ast.Var && n.Obj.Kind != ast.Fun
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue