From a7b43769b2f6dae5abdda4cb2649e43b02fbeea7 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Thu, 28 Aug 2025 09:00:15 +0200 Subject: feat: v0.0.3e1 (Ogre) Signed-off-by: Amlal El Mahrouss --- dev/DebuggerKit/POSIXMachContract.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dev/DebuggerKit/POSIXMachContract.h') diff --git a/dev/DebuggerKit/POSIXMachContract.h b/dev/DebuggerKit/POSIXMachContract.h index b04a13a..931852a 100644 --- a/dev/DebuggerKit/POSIXMachContract.h +++ b/dev/DebuggerKit/POSIXMachContract.h @@ -93,7 +93,7 @@ class POSIXMachContract : public DebuggerContract { BOOL BreakAt(std::string symbol) noexcept override { if (!m_path.empty() && std::filesystem::exists(m_path) && std::filesystem::is_regular_file(m_path)) { - auto handle = dlopen(m_path.c_str(), RTDK_LAZY); + auto handle = dlopen(m_path.c_str(), RTLD_LAZY); if (handle == nullptr) { return false; -- cgit v1.2.3