mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 16:54:23 +01:00
Merge pull request #622 from testwill/close_file
Missing close file in `WriteStream`.
This commit is contained in:
commit
20da267d24
@ -124,6 +124,7 @@ func (t *FilesystemTarget) WriteStream(path string, stream io.Reader, mode os.Fi
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
defer f.Close()
|
||||
_, err = io.Copy(f, stream)
|
||||
if err != nil {
|
||||
return err
|
||||
|
Loading…
Reference in New Issue
Block a user