From 8e25f5dc2ec2f3394568f58ac2eea413a12d2721 Mon Sep 17 00:00:00 2001 From: Brian Potchik Date: Sat, 12 Jul 2025 21:20:17 -0400 Subject: Fix potential crash in FeatureMap during memory map changes. --- ui/featuremap.h | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/featuremap.h b/ui/featuremap.h index 0447ff39..d970df83 100644 --- a/ui/featuremap.h +++ b/ui/featuremap.h @@ -37,6 +37,7 @@ class BINARYNINJAUIAPI FeatureMap : public QWidget { Q_OBJECT + mutable std::mutex m_imageMutex; std::vector m_imageData; std::unique_ptr m_image = nullptr; std::unique_ptr m_staticImage = nullptr; -- cgit v1.3.1