Add locking in WorkspaceTreeWidget fixing a segfault.
When renaming workspaces in a Python script, two threads were accessing m_selectedNames and m_renameMap; one of them calling the clear() method and the other keys(). To prevent the race condition there, the methods in question now acquire a lock before any read/write operation. Re #23513
Showing
- docs/source/release/v3.14.0/ui.rst 1 addition, 0 deletionsdocs/source/release/v3.14.0/ui.rst
- qt/widgets/common/inc/MantidQtWidgets/Common/WorkspacePresenter/WorkspaceTreeWidget.h 3 additions, 0 deletions...QtWidgets/Common/WorkspacePresenter/WorkspaceTreeWidget.h
- qt/widgets/common/src/WorkspacePresenter/WorkspaceTreeWidget.cpp 25 additions, 21 deletions...ets/common/src/WorkspacePresenter/WorkspaceTreeWidget.cpp
Loading
Please register or sign in to comment