1
0
mirror of https://github.com/securego/gosec.git synced 2025-07-07 00:35:35 +02:00

Make G201 ignore CallExpr with no args (#262)

This commit is contained in:
Yuki Ito
2018-11-05 17:28:47 +09:00
committed by Cosmin Cojocar
parent 443f84fd4d
commit 41809946d4
2 changed files with 13 additions and 0 deletions

View File

@ -309,6 +309,14 @@ func main(){
panic(err)
}
defer rows.Close()
}`}, 0}, {[]string{`
package main
import (
"fmt"
)
func main(){
fmt.Sprintln()
}`}, 0}}
// SampleCodeG202 - SQL query string building via string concatenation