fixed by errcheck

pull/177/head
Shirou WAKAYAMA 9 years ago
parent da89408631
commit 944429d994

@ -11,7 +11,10 @@ import (
) )
func DoSysctrl(mib string) ([]string, error) { func DoSysctrl(mib string) ([]string, error) {
os.Setenv("LC_ALL", "C") err := os.Setenv("LC_ALL", "C")
if err != nil {
return []string{}, err
}
out, err := exec.Command("/usr/sbin/sysctl", "-n", mib).Output() out, err := exec.Command("/usr/sbin/sysctl", "-n", mib).Output()
if err != nil { if err != nil {
return []string{}, err return []string{}, err

@ -11,7 +11,10 @@ import (
) )
func DoSysctrl(mib string) ([]string, error) { func DoSysctrl(mib string) ([]string, error) {
os.Setenv("LC_ALL", "C") err := os.Setenv("LC_ALL", "C")
if err != nil {
return []string{}, err
}
out, err := exec.Command("/sbin/sysctl", "-n", mib).Output() out, err := exec.Command("/sbin/sysctl", "-n", mib).Output()
if err != nil { if err != nil {
return []string{}, err return []string{}, err

@ -327,11 +327,6 @@ func (p *Process) MemoryMaps(grouped bool) (*[]MemoryMapsStat, error) {
return &ret, common.NotImplementedError return &ret, common.NotImplementedError
} }
func copyParams(k *KinfoProc, p *Process) error {
return nil
}
func processes() ([]Process, error) { func processes() ([]Process, error) {
results := make([]Process, 0, 50) results := make([]Process, 0, 50)
@ -364,8 +359,6 @@ func processes() ([]Process, error) {
if err != nil { if err != nil {
continue continue
} }
copyParams(&k, p)
results = append(results, *p) results = append(results, *p)
} }

Loading…
Cancel
Save