mirror of
https://github.com/securego/gosec.git
synced 2025-02-05 13:04:47 +02:00
Merge pull request #65 from GoASTScanner/sql_fix
Confirmed correct behavior for SQL tests
This commit is contained in:
commit
068e8a85ad
@ -33,8 +33,6 @@ type SqlStrConcat struct {
|
||||
// see if we can figure out what it is
|
||||
func (s *SqlStrConcat) checkObject(n *ast.Ident) bool {
|
||||
if n.Obj != nil {
|
||||
// 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user