1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-05-04 22:17:34 +08:00

forget to take addr

This commit is contained in:
Omar Polo 2019-03-18 19:58:50 +01:00
parent 932f2f6049
commit c28fe78291
No known key found for this signature in database
GPG Key ID: E483C355499D960D

View File

@ -79,7 +79,7 @@ func smt() (bool, error) {
var ret bool
br := bytes.NewReader(buf)
if err := binary.Read(br, binary.LittleEndian, ret); err != nil {
if err := binary.Read(br, binary.LittleEndian, &ret); err != nil {
return false, err
}