We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d0c58 commit 8693c88Copy full SHA for 8693c88
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"(40[0-9a-fA-F]{6})\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