We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35898f1 commit 7536d43Copy full SHA for 7536d43
src/symbolize/gimli/coff.rs
@@ -14,7 +14,7 @@ impl Mapping {
14
pub fn new(path: &Path) -> Option<Mapping> {
15
let map = super::mmap(path)?;
16
Mapping::mk(map, |data, stash| {
17
- Context::new(stash, Object::parse(data)?, None)
+ Context::new(stash, Object::parse(data)?, None, None)
18
})
19
}
20
src/symbolize/gimli/macho.rs
@@ -45,7 +45,7 @@ impl Mapping {
45
let (macho, data) = find_header(data)?;
46
let endian = macho.endian().ok()?;
47
let obj = Object::parse(macho, endian, data)?;
48
- Context::new(stash, obj, None)
+ Context::new(stash, obj, None, None)
49
50
51
@@ -82,7 +82,7 @@ impl Mapping {
82
return None;
83
84
85
86
});
87
if let Some(candidate) = candidate {
88
return Some(candidate);
@@ -309,7 +309,7 @@ fn object_mapping(path: &[u8]) -> Option<Mapping> {
309
310
311
312
313
314
315
0 commit comments