mirror of
https://github.com/opencv/opencv.git
synced 2024-11-29 13:47:32 +08:00
Update matrix.cpp
Fix race condition in getDefaultAllocator and setDefaultAllocator interaction / not threadsafe currently
This commit is contained in:
parent
d72ddc8255
commit
cf4e9e5ce2
@ -222,16 +222,20 @@ public:
|
||||
};
|
||||
namespace
|
||||
{
|
||||
MatAllocator* g_matAllocator = NULL;
|
||||
MatAllocator* volatile g_matAllocator = NULL;
|
||||
}
|
||||
|
||||
|
||||
MatAllocator* Mat::getDefaultAllocator()
|
||||
{
|
||||
if (g_matAllocator == NULL)
|
||||
{
|
||||
cv::AutoLock lock(cv::getInitializationMutex());
|
||||
if (g_matAllocator == NULL)
|
||||
{
|
||||
g_matAllocator = getStdAllocator();
|
||||
}
|
||||
}
|
||||
return g_matAllocator;
|
||||
}
|
||||
void Mat::setDefaultAllocator(MatAllocator* allocator)
|
||||
|
Loading…
Reference in New Issue
Block a user