Changeset 62464 in vbox
- Timestamp:
- Jul 22, 2016 4:54:49 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109020
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/socket.cpp
r60910 r62464 1469 1469 AssertReturn(RTMemPoolRefCount(pThis) >= (pThis->cUsers ? 2U : 1U), VERR_CALLER_NO_REFERENCE); 1470 1470 int const fdMax = (int)pThis->hNative + 1; 1471 AssertReturn( fdMax - 1== pThis->hNative, VERR_INTERNAL_ERROR_5);1471 AssertReturn((RTSOCKETNATIVE)(fdMax - 1) == pThis->hNative, VERR_INTERNAL_ERROR_5); 1472 1472 1473 1473 /* … … 1513 1513 AssertReturn(RTMemPoolRefCount(pThis) >= (pThis->cUsers ? 2U : 1U), VERR_CALLER_NO_REFERENCE); 1514 1514 int const fdMax = (int)pThis->hNative + 1; 1515 AssertReturn( fdMax - 1== pThis->hNative, VERR_INTERNAL_ERROR_5);1515 AssertReturn((RTSOCKETNATIVE)(fdMax - 1) == pThis->hNative, VERR_INTERNAL_ERROR_5); 1516 1516 1517 1517 *pfEvents = 0;
Note:
See TracChangeset
for help on using the changeset viewer.