Skip to content

Commit

Permalink
correct Rich Headers
Browse files Browse the repository at this point in the history
  • Loading branch information
mnaza committed Oct 20, 2024
1 parent 95fd8b6 commit 69443be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pe/rich_headers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ impl RichRecord {
}

pub fn lookup_vs_version(&self) -> &'static str {
match COMP_ID_MAP.get(&(((self.product as u32) << 16) & self.build as u32)) {
match COMP_ID_MAP.get(&(((self.product as u32) << 16) | self.build as u32)) {
Some(dd) => dd,
_ => "UNKNOWN PRODUCT",
}
Expand Down

0 comments on commit 69443be

Please sign in to comment.