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.
2 parents 772be7e + 8693c88 commit c55af2aCopy full SHA for c55af2a
src/lib.rs
@@ -109,7 +109,7 @@ pub fn decode(bin: &[u8], dump: &str) -> ReturnType {
109
};
110
111
// Match everything that looks like a program address
112
- let re = Regex::new(r"([0-9a-fA-F]{8})\b").unwrap();
+ let re = Regex::new(r"(4[0-9a-fA-F]{7})\b").unwrap();
113
for cap in re.captures_iter(dump) {
114
let address = u64::from_str_radix(&cap[0], 16).unwrap();
115
// Look for frame that contains the address
0 commit comments