mirror of
https://github.com/phiresky/ripgrep-all.git
synced 2024-11-17 09:25:34 +00:00
prevent panic on broken tar checksum
This commit is contained in:
parent
47a59ea751
commit
7efd8638ce
@ -48,7 +48,7 @@ impl FileAdapter for TarAdapter {
|
||||
} = ai;
|
||||
let mut archive = ::tar::Archive::new(&mut inp);
|
||||
for entry in archive.entries()? {
|
||||
let mut file = entry.unwrap();
|
||||
let mut file = entry?;
|
||||
if Regular == file.header().entry_type() {
|
||||
let path = PathBuf::from(file.path()?.to_owned());
|
||||
eprintln!(
|
||||
|
Loading…
Reference in New Issue
Block a user