From 60822714de0847c2775c3fbb3ef0d7d2b7b007b8 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 14 Jul 2025 14:22:46 -0700 Subject: [PATCH] Prevent mutex deadlock Load calls migrate so they don't both need locks --- common/lib_table_base.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/common/lib_table_base.cpp b/common/lib_table_base.cpp index 0aa89502ee..038d633d6f 100644 --- a/common/lib_table_base.cpp +++ b/common/lib_table_base.cpp @@ -482,8 +482,6 @@ void LIB_TABLE::reindex() bool LIB_TABLE::migrate() { - std::lock_guard lock( m_mutex ); - bool table_updated = false; for( LIB_TABLE_ROW& row : m_rows )