Hiya,
I've got a tiny problem.
When the app. exits it report memory leaks in strcore.cpp (118). I've tracked it to the string param passed to the CMutex constructor.
Somehow CSyncObject's m_strName doesn't clean up properly.
Anyone familiar with this? Is Visual Studio just confused, or?
/Per
www.perfnurt.se
I've got a tiny problem.
Code:
UINT MyThreadFunc(LPVOID pParam)
{
// ...
CMutex mutex(FALSE, "MyMutexName");
while(somthing) { ... }
}
When the app. exits it report memory leaks in strcore.cpp (118). I've tracked it to the string param passed to the CMutex constructor.
Somehow CSyncObject's m_strName doesn't clean up properly.
Anyone familiar with this? Is Visual Studio just confused, or?
/Per
www.perfnurt.se