Skip to content
Snippets Groups Projects
Commit 0cde939d authored by Janik Zikovsky's avatar Janik Zikovsky
Browse files

Refs #3203: Fix occasional segfault in ConvertToMatrixWorkspaceTest due to a...

Refs #3203: Fix occasional segfault in ConvertToMatrixWorkspaceTest due to a little error in CRITICAL block names for OpenMP thread safety. One character fix :)
parent 1e026c1f
No related branches found
No related tags found
No related merge requests found
......@@ -133,7 +133,7 @@ namespace DataObjects
MantidVecWithMarker * EventWorkspaceMRU::findE(size_t thread_num, size_t index)
{
MantidVecWithMarker * out;
PARALLEL_CRITICAL(EventWorkspace_MRUY_access)
PARALLEL_CRITICAL(EventWorkspace_MRUE_access)
{
out = m_bufferedDataE[thread_num]->find(index);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment