瀏覽代碼

Appease clippy

```
error: called `Iterator::last` on a `DoubleEndedIterator`; this will needlessly iterate the entire iterator
   --> aya/src/programs/uprobe.rs:282:64
    |
282 |             let path = line.split(|b| b.is_ascii_whitespace()).last()?;
    |                                                                ^^^^^^ help: try: `next_back()`
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#double_ended_iterator_last
```
Tamir Duberstein 2 月之前
父節點
當前提交
69144a977e
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      aya/src/programs/uprobe.rs

+ 1 - 1
aya/src/programs/uprobe.rs

@@ -279,7 +279,7 @@ fn proc_maps_libs(pid: pid_t) -> Result<Vec<(OsString, PathBuf)>, io::Error> {
                 }
                 break;
             }
-            let path = line.split(|b| b.is_ascii_whitespace()).last()?;
+            let path = line.split(|b| b.is_ascii_whitespace()).next_back()?;
             let path = Path::new(OsStr::from_bytes(path));
             path.is_absolute()
                 .then(|| {