Changeset 1308 in vbox
- Timestamp:
- Mar 7, 2007 6:28:37 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r1293 r1308 493 493 RTMemTmpFree(pszFile); 494 494 495 /* don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY as these are very unlikely*/495 /* Don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY above as these are very unlikely. */ 496 496 if (VBOX_FAILURE(rc)) 497 497 return VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load GC module %s"), pszFilename); … … 580 580 LogRel(("pdmR3LoadR0: pszName=\"%s\" rc=%Vrc\n", pszName, rc)); 581 581 582 /* don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY as these are very unlikely*/582 /* Don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY above as these are very unlikely. */ 583 583 if (VBOX_FAILURE(rc)) 584 584 return VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load R0 module %s"), pszFilename); 585 586 585 return rc; 587 586 }
Note:
See TracChangeset
for help on using the changeset viewer.