Skip to content

Commit 8693c88

Browse files
pzichmaximeborges
authored andcommitted
Relax address regex
1 parent f6d0c58 commit 8693c88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ pub fn decode(bin: &[u8], dump: &str) -> ReturnType {
109109
};
110110

111111
// Match everything that looks like a program address
112-
let re = Regex::new(r"(40[0-9a-fA-F]{6})\b").unwrap();
112+
let re = Regex::new(r"(4[0-9a-fA-F]{7})\b").unwrap();
113113
for cap in re.captures_iter(dump) {
114114
let address = u64::from_str_radix(&cap[0], 16).unwrap();
115115
// Look for frame that contains the address

0 commit comments

Comments
 (0)