[SHELL32]

- Stop asserting 'ref == 0' in CComCreatorCentralInstance::Term. It's caught enough reference leaks and is mostly just annoying now.
CORE-9867 #resolve

svn path=/trunk/; revision=69228
This commit is contained in:
Thomas Faber 2015-09-14 19:14:48 +00:00
parent e6b660bdce
commit 94c98733e6

View file

@ -72,9 +72,6 @@ public:
if (s_pInstance)
{
ref = s_pInstance->Release();
#ifdef ASSERT
ASSERT(ref == 0);
#endif
s_pInstance = NULL;
}
}