forestgump786
Programmer
I have a function which looks like the following-
void x()
{
::CoInitialize();
...
x = getXyz() // returns a pointer to another com object
x.m();
::CoUninitialize();
}
Now, several threads call this function x(). Some times it works fine and some times it hangs idefinitely.
What could be the cause ?
void x()
{
::CoInitialize();
...
x = getXyz() // returns a pointer to another com object
x.m();
::CoUninitialize();
}
Now, several threads call this function x(). Some times it works fine and some times it hangs idefinitely.
What could be the cause ?