From 34622adc292cb10b84c7984fc0cef966ee2c19b7 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Fri, 19 Dec 2025 15:57:20 -0500 Subject: fix strings missing race condition --- examples/triage/exports.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'examples/triage/exports.h') diff --git a/examples/triage/exports.h b/examples/triage/exports.h index aeca67e0..af0f4613 100644 --- a/examples/triage/exports.h +++ b/examples/triage/exports.h @@ -22,6 +22,8 @@ class GenericExportsModel : public QAbstractItemModel, public BinaryNinja::Binar std::atomic m_updatesPaused = false; // Read/written from arbitrary threads while processing notifications. std::atomic m_needsUpdate = true; + // Tracks if notifications arrived while paused + std::atomic m_dirtyWhilePaused = false; void performSort(int col, Qt::SortOrder order); void updateModel(); -- cgit v1.3.1