Jorge Alejandro Durán Royo

Results 3 comments of Jorge Alejandro Durán Royo

Thanks for the feedback. You're absolutely right — we shouldn’t be using println! or eprintln! in library code, which is why they were replaced with debug! and error! respectively. As...

![image](https://github.com/user-attachments/assets/16283572-9538-4e2e-aa20-33211f0e1ad8) `diff --git a/src/pe/relocation.rs b/src/pe/relocation.rs index c418fb0..9b2f593 100644 --- a/src/pe/relocation.rs +++ b/src/pe/relocation.rs @@ -339,28 +339,35 @@ impl { file_alignment: u32, opts: &options::ParseOptions, ) -> error::Result { - let offset =...

Hi @kkent030315, thanks for the information about the fix coming in PR #465. I'll keep my PR open until that version is merged and released, as this functionality is necessary...