You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
binsider fails to load an elf file from a file system that doesn't support creation. Instead it reports the error "IO error: creation time is not available for the filesystem"
To reproduce
Run binsider with a file argument on a file system without ctime support, like an NFS mount or tmpfs.
Expected behavior
binsider should load the elf file, but not display a creation time
Software information
Operating system: RHEL 8
Rust version: 1.77.2
Project version: HEAD
Additional context
I worked around it by modifying src/file.rs to set FileDateInfo.birth to "".into() if metadata.created().is_err(). You might want to implement something different.
The text was updated successfully, but these errors were encountered:
Describe the bug
binsider fails to load an elf file from a file system that doesn't support creation. Instead it reports the error "IO error:
creation time is not available for the filesystem
"To reproduce
Run binsider with a file argument on a file system without ctime support, like an NFS mount or tmpfs.
Expected behavior
binsider should load the elf file, but not display a creation time
Software information
Additional context
I worked around it by modifying src/file.rs to set FileDateInfo.birth to "".into() if metadata.created().is_err(). You might want to implement something different.
The text was updated successfully, but these errors were encountered: