diff --git a/src/ld_so/dso.rs b/src/ld_so/dso.rs index e401cf5d36..98ff082bba 100644 --- a/src/ld_so/dso.rs +++ b/src/ld_so/dso.rs @@ -235,8 +235,6 @@ pub struct DSO { pub entry_point: usize, /// Loaded library in-memory data pub mmap: &'static [u8], - pub global_syms: BTreeMap, - pub weak_syms: BTreeMap, pub tls_module_id: usize, pub tls_offset: usize, @@ -281,8 +279,6 @@ impl DSO { dlopened, entry_point, mmap, - global_syms: BTreeMap::new(), - weak_syms: BTreeMap::new(), tls_module_id: if tcb_master.is_some() { tls_module_id } else {