From 0af818fc0f1da0fb39da0f589bc58ca62a2bc492 Mon Sep 17 00:00:00 2001 From: neru Date: Sat, 11 Apr 2026 12:36:00 -0300 Subject: [PATCH] fix: remove useless mutex --- src/unlocker/main.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/unlocker/main.cpp b/src/unlocker/main.cpp index 6432381..9565400 100644 --- a/src/unlocker/main.cpp +++ b/src/unlocker/main.cpp @@ -47,8 +47,6 @@ Proxy* g_Proxy = nullptr; void cleanup() { - static std::mutex cleanupMutex; - std::lock_guard lock(cleanupMutex); static bool cleaned = false; if (cleaned) return; cleaned = true;