Merge pull request #8713 from grundman:patch-6

pull/8790/head
Alexander Alekhin 8 years ago
commit 7bd3ccd929
  1. 8
      modules/core/src/matrix.cpp

@ -222,7 +222,7 @@ public:
};
namespace
{
MatAllocator* g_matAllocator = NULL;
MatAllocator* volatile g_matAllocator = NULL;
}
@ -230,7 +230,11 @@ MatAllocator* Mat::getDefaultAllocator()
{
if (g_matAllocator == NULL)
{
g_matAllocator = getStdAllocator();
cv::AutoLock lock(cv::getInitializationMutex());
if (g_matAllocator == NULL)
{
g_matAllocator = getStdAllocator();
}
}
return g_matAllocator;
}

Loading…
Cancel
Save