Selaa lähdekoodia

Fix regression introduced in 5fcf9206

I by mistake commented _dl_debug_state() function which would break
debugging
oddcoder 4 vuotta sitten
vanhempi
commit
aaf017d9d1
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/ld_so/linker.rs

+ 1 - 1
src/ld_so/linker.rs

@@ -898,7 +898,7 @@ impl Linker {
             }
         }
         unsafe { _r_debug.state = RTLDState::RT_CONSISTENT };
-        //_dl_debug_state();
+        _dl_debug_state();
         Ok(entry_opt)
     }
 }