close file
This commit is contained in:
parent
f068fb7aae
commit
81425528a5
6
main.go
6
main.go
@ -86,7 +86,8 @@ func parserWorker(pathCh <-chan string, result chan<- parser.Parser) {
|
||||
return
|
||||
}
|
||||
|
||||
src, _ := os.Open(path)
|
||||
src, err := os.Open(path)
|
||||
checkErr(err)
|
||||
|
||||
if *usePhp5 {
|
||||
parserWorker = php5.NewParser(src, path)
|
||||
@ -95,6 +96,9 @@ func parserWorker(pathCh <-chan string, result chan<- parser.Parser) {
|
||||
}
|
||||
|
||||
parserWorker.Parse()
|
||||
|
||||
src.Close()
|
||||
|
||||
result <- parserWorker
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user