Changeset 1293 in vbox
- Timestamp:
- Mar 7, 2007 9:43:36 AM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19246
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r1194 r1293 275 275 } 276 276 277 /* Something went wrong, most likely module not found. Don't consider other unlikely errors */ 277 278 RTMemFree(pModule); 278 return rc;279 return VMSetError(pVM, rc, RT_SRC_POS, N_("Unable to load R3 module %s"), pszFilename); 279 280 } 280 281 … … 492 493 RTMemTmpFree(pszFile); 493 494 495 /* don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY as these are very unlikely */ 496 if (VBOX_FAILURE(rc)) 497 return VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load GC module %s"), pszFilename); 494 498 return rc; 495 499 } … … 575 579 RTMemTmpFree(pszFile); 576 580 LogRel(("pdmR3LoadR0: pszName=\"%s\" rc=%Vrc\n", pszName, rc)); 581 582 /* don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY as these are very unlikely */ 583 if (VBOX_FAILURE(rc)) 584 return VMSetError(pVM, rc, RT_SRC_POS, N_("Cannot load R0 module %s"), pszFilename); 585 577 586 return rc; 578 587 }
Note:
See TracChangeset
for help on using the changeset viewer.