mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-29 13:49:21 +08:00
Merge pull request #880 from Lomanic/issue867
[process][darwin][nocgo] Fix #867 iterate on every lines returned by lsof to handle potential warnings
This commit is contained in:
commit
a303ddc7d1
@ -22,7 +22,7 @@ func (p *Process) ExeWithContext(ctx context.Context) (string, error) {
|
|||||||
}
|
}
|
||||||
txtFound := 0
|
txtFound := 0
|
||||||
lines := strings.Split(string(out), "\n")
|
lines := strings.Split(string(out), "\n")
|
||||||
for i := 1; i < len(lines); i += 2 {
|
for i := 1; i < len(lines); i++ {
|
||||||
if lines[i] == "ftxt" {
|
if lines[i] == "ftxt" {
|
||||||
txtFound++
|
txtFound++
|
||||||
if txtFound == 2 {
|
if txtFound == 2 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user