From 98e3898408fe89c70769c5db3ba2f4215dab392f Mon Sep 17 00:00:00 2001 From: adeliktas Date: Thu, 12 Mar 2026 18:37:48 +0100 Subject: [PATCH] Fix MutexLock compilation in main_portable.cc for IDA Pro 9.1 on Windows/VS 2019 --- main_portable.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main_portable.cc b/main_portable.cc index 5d5845f9..695832bf 100644 --- a/main_portable.cc +++ b/main_portable.cc @@ -213,7 +213,7 @@ void DifferThread::operator()() { Timer<> timer; { // Pop pair from todo queue. - absl::MutexLock lock(g_queue_mutex); + absl::MutexLock lock(&g_queue_mutex); if (file_queue_->empty()) { break; }