diff options
| author | Brian Potchik <brian@vector35.com> | 2025-07-12 21:20:17 -0400 |
|---|---|---|
| committer | Brian Potchik <brian@vector35.com> | 2025-07-12 21:20:17 -0400 |
| commit | 8e25f5dc2ec2f3394568f58ac2eea413a12d2721 (patch) | |
| tree | 30e9ab0771c50676e8fb07679398a61e604b4f9c /ui | |
| parent | 6c4619c0e3216f51f6e69071c7ce2a3e909b6a74 (diff) | |
Fix potential crash in FeatureMap during memory map changes.
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/featuremap.h | 1 |
1 files changed, 1 insertions, 0 deletions
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<uint8_t> m_imageData; std::unique_ptr<QImage> m_image = nullptr; std::unique_ptr<QImage> m_staticImage = nullptr; |
