Changeset 57377 in vbox for trunk/src/VBox
- Timestamp:
- Aug 17, 2015 11:43:10 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
r57358 r57377 722 722 723 723 /* Don't consider VERR_PDM_MODULE_NAME_CLASH and VERR_NO_MEMORY above as these are very unlikely. */ 724 if (RT_FAILURE(rc) && pUVM->pVM) /** @todo VMR3SetErrorU. */725 rc = VM SetError(pUVM->pVM, rc, RT_SRC_POS, N_("Cannotload R0 module %s: %s"), pszFilename, ErrInfo.Core.pszMsg);724 if (RT_FAILURE(rc)) 725 rc = VMR3SetError(pUVM, rc, RT_SRC_POS, N_("Failed to load R0 module %s: %s"), pszFilename, ErrInfo.Core.pszMsg); 726 726 727 727 RTMemTmpFree(pszFile); /* might be reference thru pszFilename in the above VMSetError call. */
Note:
See TracChangeset
for help on using the changeset viewer.