- Timestamp:
- Aug 16, 2013 11:15:56 AM (11 years ago)
- Location:
- trunk/src/VBox/Main/glue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/NativeEventQueue.cpp
r46651 r47800 224 224 nsCOMPtr<nsIEventQueue> q; 225 225 nsresult rv = NS_GetMainEventQ(getter_AddRefs(q)); 226 Assert (NS_SUCCEEDED(rv));226 AssertComRCReturnRC(rv); 227 227 Assert(q == sMainQueue->mEventQ); 228 228 -
trunk/src/VBox/Main/glue/initterm.cpp
r47777 r47800 495 495 496 496 /* clean up before the new try */ 497 rc = NS_ShutdownXPCOM(nsnull); 497 HRESULT rc2 = NS_ShutdownXPCOM(nsnull); 498 if (SUCCEEDED(rc)) 499 rc = rc2; 498 500 499 501 if (i == 0) … … 505 507 506 508 #endif /* !defined (VBOX_WITH_XPCOM) */ 509 510 AssertComRCReturnRC(rc); 507 511 508 512 // for both COM and XPCOM, we only get here if this is the main thread; … … 510 514 Assert(RTThreadIsMain(RTThreadSelf())); 511 515 util::InitAutoLockSystem(); 512 513 AssertComRC(rc);514 516 515 517 /*
Note:
See TracChangeset
for help on using the changeset viewer.