Author: tfaber Date: Mon Sep 14 19:14:48 2015 New Revision: 69228
URL: http://svn.reactos.org/svn/reactos?rev=69228&view=rev Log: [SHELL32] - Stop asserting 'ref == 0' in CComCreatorCentralInstance::Term. It's caught enough reference leaks and is mostly just annoying now. CORE-9867 #resolve
Modified: trunk/reactos/include/reactos/shellutils.h
Modified: trunk/reactos/include/reactos/shellutils.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/include/reactos/shellutils.... ============================================================================== --- trunk/reactos/include/reactos/shellutils.h [iso-8859-1] (original) +++ trunk/reactos/include/reactos/shellutils.h [iso-8859-1] Mon Sep 14 19:14:48 2015 @@ -72,9 +72,6 @@ if (s_pInstance) { ref = s_pInstance->Release(); -#ifdef ASSERT - ASSERT(ref == 0); -#endif s_pInstance = NULL; } }