mirror of
https://github.com/securego/gosec.git
synced 2024-11-05 19:45:51 +00:00
Merge pull request #65 from GoASTScanner/sql_fix
Confirmed correct behavior for SQL tests
This commit is contained in:
commit
068e8a85ad
1 changed files with 0 additions and 2 deletions
|
@ -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…
Reference in a new issue