Changeset 52213 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Jul 28, 2014 5:52:58 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 95276
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/PDMLdr.cpp
r49039 r52213 406 406 { 407 407 /* Search for the symbol. */ 408 int rc = RTLdrGetSymbolEx(pCur->hLdrMod, pCur->pvBits, pCur->ImageBase, pszSymbol, pValue);408 int rc = RTLdrGetSymbolEx(pCur->hLdrMod, pCur->pvBits, pCur->ImageBase, UINT32_MAX, pszSymbol, pValue); 409 409 if (RT_SUCCESS(rc)) 410 410 { … … 540 540 */ 541 541 RTLDRADDR uValue; 542 rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, 542 rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, UINT32_MAX, 543 543 "g_VTGObjHeader", &uValue); 544 544 if (RT_SUCCESS(rc)) … … 740 740 { 741 741 RTUINTPTR Value = 0; 742 int rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, pszSymbol, &Value);742 int rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, UINT32_MAX, pszSymbol, &Value); 743 743 RTCritSectLeave(&pUVM->pdm.s.ListCritSect); 744 744 if (RT_SUCCESS(rc)) … … 910 910 { 911 911 RTUINTPTR Value; 912 int rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, pszSymbol, &Value);912 int rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, UINT32_MAX, pszSymbol, &Value); 913 913 RTCritSectLeave(&pUVM->pdm.s.ListCritSect); 914 914 if (RT_SUCCESS(rc)) … … 1673 1673 if (!fNullRun) 1674 1674 { 1675 rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, szSymbol, &Value);1675 rc = RTLdrGetSymbolEx(pModule->hLdrMod, pModule->pvBits, pModule->ImageBase, UINT32_MAX, szSymbol, &Value); 1676 1676 AssertMsgRCBreak(rc, ("Couldn't find symbol '%s' in module '%s'\n", szSymbol, pModule->szName)); 1677 1677 }
Note:
See TracChangeset
for help on using the changeset viewer.