We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fc74d1 commit 342848cCopy full SHA for 342848c
src/windows/link.rs
@@ -78,6 +78,11 @@ impl Dll {
78
tracing::warn!("[relink/windows] Skipping malformed PE file {path:?}: {e}");
79
Ok(None)
80
}
81
+ goblin::error::Error::Scroll(_) => {
82
+ // A valid PE file but goblin can not reading and interpreting bytes
83
+ tracing::warn!("[relink/windows] Skipping uninterpretable PE file {path:?}: {e}");
84
+ Ok(None)
85
+ }
86
_ => {
87
// IO, buffer, scroll errors should bubble up as real system errors
88
Err(RelinkError::ParseError(e))
0 commit comments