1
0
Fork 0

check whether entry is file. avoids 'raou .' panic

Dieser Commit ist enthalten in:
Albert S. 2020-09-26 18:42:27 +02:00
Ursprung 9f2f0e66b2
Commit aaa6670eda
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -262,6 +262,12 @@ fn exec(entryname: &str, cmdargs: &Vec<String>) -> std::io::Result<()> {
"Specified entry is outside base directory",
));
}
if ! p.is_file() {
return Err(std::io::Error::new(
ErrorKind::Other,
"Error: Entry not a file",
));
}
}
Err(e) => {
if e.kind() == ErrorKind::NotFound {