[OLE #16] Comment out an assert, as we don't yet implement IRemUnknown

Mike Hearn mh at codeweavers.com
Tue Dec 28 09:37:17 CST 2004


Mike Hearn <mh at codeweavers.com>
Comment out an assert, as we don't yet implement IRemUnknown

--- dlls/ole32/stubmanager.c  (revision 9)
+++ dlls/ole32/stubmanager.c  (local)
@@ -171,8 +175,10 @@ int stub_manager_unref(struct stub_manag
         EnterCriticalSection(&m->lock);
         if (!list_empty(&m->ifstubs))
         {
-            ERR("PANIC: Stub manager is being destroyed with outstanding interface stubs\n");
-            assert( FALSE );
+            ERR("PANIC: Stub manager %s is being destroyed with outstanding interface stubs\n", wine_dbgstr_longlong(m->oid));
+            
+            /* assert( FALSE ); */
+            /* fixme: this will happen sometimes until we do proper lifecycle management via IRemUnknown */
         }
 
         /* fixme: the lifecycle of table-weak marshals is not





More information about the wine-patches mailing list