- Timestamp:
- Mar 25, 2015 3:23:50 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 99192
- Location:
- trunk/src/VBox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/common/VBoxService/VBoxServiceControl.cpp
r50810 r54944 202 202 AssertReturn(RT_IS_POWER_OF_TWO(cbScratchBuf), VERR_INVALID_PARAMETER); 203 203 uint8_t *pvScratchBuf = (uint8_t*)RTMemAlloc(cbScratchBuf); 204 Assert PtrReturn(pvScratchBuf, VERR_NO_MEMORY);204 AssertReturn(pvScratchBuf, VERR_NO_MEMORY); 205 205 206 206 VBGLR3GUESTCTRLCMDCTX ctxHost = { g_uControlSvcClientID }; -
trunk/src/VBox/Devices/Storage/DrvSCSIHost.cpp
r51520 r54944 286 286 287 287 paSG = (sg_iovec_t *)RTMemAllocZ(pRequest->cScatterGatherEntries * sizeof(sg_iovec_t)); 288 Assert PtrReturn(paSG, VERR_NO_MEMORY);288 AssertReturn(paSG, VERR_NO_MEMORY); 289 289 290 290 for (unsigned i = 0; i < pRequest->cScatterGatherEntries; i++) -
trunk/src/VBox/Main/src-client/UsbCardReader.cpp
r51612 r54944 550 550 { 551 551 pvInBufferCopy = RTMemDup(pvInBuffer, cbInBuffer); 552 Assert PtrReturn(pvInBufferCopy, VERR_NO_MEMORY);552 AssertReturn(pvInBufferCopy, VERR_NO_MEMORY); 553 553 } 554 554 int rc = RTReqQueueCallEx(pThis->hReqQCardReaderCmd, NULL, 0, RTREQFLAGS_VOID | RTREQFLAGS_NO_WAIT, -
trunk/src/VBox/NetworkServices/NetLib/VBoxNetPortForwardString.cpp
r52938 r54944 246 246 247 247 pszRaw = RTStrDup(pcszStrPortForward); 248 249 AssertPtrReturn(pszRaw, VERR_NO_MEMORY); 248 AssertReturn(pszRaw, VERR_NO_MEMORY); 250 249 251 250 pszRawBegin = pszRaw;
Note:
See TracChangeset
for help on using the changeset viewer.