From aaf017d9d12292bd06208eb32679e99045d51d3a Mon Sep 17 00:00:00 2001 From: oddcoder <ahmedsoliman@oddcoder.com> Date: Sun, 5 Jul 2020 20:53:05 +0200 Subject: [PATCH] Fix regression introduced in 5fcf9206 I by mistake commented _dl_debug_state() function which would break debugging --- src/ld_so/linker.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ld_so/linker.rs b/src/ld_so/linker.rs index 3f3e1911..8bd255cf 100644 --- a/src/ld_so/linker.rs +++ b/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) } } -- GitLab