Changeset 33877 in vbox
- Timestamp:
- Nov 8, 2010 9:45:46 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/PDMLdr.cpp
r33540 r33877 376 376 } 377 377 if (RT_SUCCESS(rc) || pszModule) 378 { 379 if (RT_FAILURE(rc)) 380 LogRel(("PDMLdr: Couldn't find symbol '%s' in module '%s'!\n", pszSymbol, pszModule)); 378 381 return rc; 382 } 379 383 } 380 384 … … 406 410 { 407 411 RTCritSectLeave(&pUVM->pdm.s.ListCritSect); 408 AssertMsgFailed(("Couldn't find symbol '%s' in module '%s'!\n", pszSymbol, pszModule)); 409 LogRel(("PDMLdr: Couldn't find symbol '%s' in module '%s'!\n", pszSymbol, pszModule)); 412 AssertLogRelMsgFailed(("PDMLdr: Couldn't find symbol '%s' in module '%s'!\n", pszSymbol, pszModule)); 410 413 return VERR_SYMBOL_NOT_FOUND; 411 414 } … … 417 420 418 421 RTCritSectLeave(&pUVM->pdm.s.ListCritSect); 419 Assert MsgFailed(("Couldn't find module '%s' for resolving symbol '%s'!\n", pszModule, pszSymbol));422 AssertLogRelMsgFailed(("Couldn't find module '%s' for resolving symbol '%s'!\n", pszModule, pszSymbol)); 420 423 return VERR_SYMBOL_NOT_FOUND; 421 424 }
Note:
See TracChangeset
for help on using the changeset viewer.