Changeset 29978 in vbox
- Timestamp:
- Jun 2, 2010 11:38:31 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/SUPDrv.c
r29250 r29978 3645 3645 supdrvLdrUnlock(pDevExt); 3646 3646 Log(("supdrvIOCtl_LdrOpen: RTMemAlloc() failed\n")); 3647 return VERR_NO_MEMORY;3647 return /*VERR_NO_MEMORY*/ VERR_INTERNAL_ERROR_2; 3648 3648 } 3649 3649 … … 3678 3678 pImage->pvImage = RT_ALIGN_P(pImage->pvImageAlloc, 32); 3679 3679 pImage->fNative = false; 3680 rc = pImage->pvImageAlloc ? VINF_SUCCESS : VERR_NO_ MEMORY;3680 rc = pImage->pvImageAlloc ? VINF_SUCCESS : VERR_NO_EXEC_MEMORY; 3681 3681 } 3682 3682 if (RT_FAILURE(rc)) … … 3861 3861 memcpy(pImage->pachStrTab, &pReq->u.In.abImage[pReq->u.In.offStrTab], pImage->cbStrTab); 3862 3862 else 3863 rc = VERR_NO_MEMORY;3863 rc = /*VERR_NO_MEMORY*/ VERR_INTERNAL_ERROR_3; 3864 3864 } 3865 3865 … … 3872 3872 memcpy(pImage->paSymbols, &pReq->u.In.abImage[pReq->u.In.offSymbols], cbSymbols); 3873 3873 else 3874 rc = VERR_NO_MEMORY;3874 rc = /*VERR_NO_MEMORY*/ VERR_INTERNAL_ERROR_4; 3875 3875 } 3876 3876 … … 4300 4300 */ 4301 4301 pUsage = (PSUPDRVLDRUSAGE)RTMemAlloc(sizeof(*pUsage)); 4302 AssertReturn(pUsage, VERR_NO_MEMORY);4302 AssertReturn(pUsage, /*VERR_NO_MEMORY*/ VERR_INTERNAL_ERROR_5); 4303 4303 pUsage->cUsage = 1; 4304 4304 pUsage->pImage = pImage;
Note:
See TracChangeset
for help on using the changeset viewer.