]> Cypherpunks.ru repositories - nncp.git/blobdiff - src/pipe.go
Missed error checks
[nncp.git] / src / pipe.go
index ef25a9115a8319ed951579345a2a8a785ab1dcc0..e9295d483f24394cedee5088bfa20eeeb2e0414a 100644 (file)
@@ -1,6 +1,6 @@
 /*
 NNCP -- Node to Node copy, utilities for store-and-forward data exchange
-Copyright (C) 2016-2021 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2016-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -65,11 +65,11 @@ func (c PipeConn) SetWriteDeadline(t time.Time) error {
 }
 
 func (c PipeConn) Close() (err error) {
-       err = c.r.Close()
+       c.r.Close()
        err = c.w.Close()
        go c.cmd.Wait()
        time.AfterFunc(time.Duration(10*time.Second), func() {
-               c.cmd.Process.Kill() // #nosec G104
+               c.cmd.Process.Kill()
        })
        return
 }