all: fix nilness issues

Signed-off-by: Matt Layher <mdlayher@gmail.com>
This commit is contained in:
Matt Layher
2023-12-05 10:32:35 -05:00
committed by Andrew Dunham
parent c5208f8138
commit a217f1fccf
7 changed files with 5 additions and 18 deletions

View File

@@ -178,7 +178,7 @@ func (li *linuxImpl) parseProcNetFile(r *bufio.Reader, fileBase string) error {
// Scratch buffer for making inode strings.
inoBuf := make([]byte, 0, 50)
for err == nil {
for {
line, err := r.ReadSlice('\n')
if err == io.EOF {
break