From 94c98733e6e939c50204a5744a792722a3471695 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Mon, 14 Sep 2015 19:14:48 +0000 Subject: [PATCH] [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 --- reactos/include/reactos/shellutils.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/reactos/include/reactos/shellutils.h b/reactos/include/reactos/shellutils.h index 45df2a0e8b4..9ef6d225c9d 100644 --- a/reactos/include/reactos/shellutils.h +++ b/reactos/include/reactos/shellutils.h @@ -72,9 +72,6 @@ public: if (s_pInstance) { ref = s_pInstance->Release(); -#ifdef ASSERT - ASSERT(ref == 0); -#endif s_pInstance = NULL; } }