Changeset 57972 in vbox for trunk/src/VBox/HostDrivers/VBoxUSB
- Timestamp:
- Sep 30, 2015 3:19:05 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxUSB/darwin/VBoxUSB.cpp
r57358 r57972 194 194 static void scheduleReleaseByOwner(RTPROCESS Owner); 195 195 private: 196 /** Padding to guard against parent class expanding (see class remarks). */ 197 uint8_t m_abPadding[256]; 196 198 /** The interface we're driving (aka. the provider). */ 197 199 IOUSBDevice *m_pDevice; … … 1090 1092 */ 1091 1093 IOService *pRet = IOUSBUserClientInit::probe(pProvider, pi32Score); 1092 Assert(pRet == this); 1094 /*AssertMsg(pRet == this, ("pRet=%p this=%p *pi32Score=%d \n", pRet, this, pi32Score ? *pi32Score : 0)); - call always returns NULL on 10.11+ */ 1095 pRet = this; 1093 1096 m_Owner = Owner; 1094 1097 m_uId = uId;
Note:
See TracChangeset
for help on using the changeset viewer.