- Timestamp:
- Oct 20, 2021 12:01:58 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Misc/DevVirtualKD.cpp
r87236 r91886 212 212 { 213 213 PDMDEV_CHECK_VERSIONS_RETURN(pDevIns); 214 VIRTUALKD *pThis = PDMDEVINS_2_DATA(pDevIns, VIRTUALKD *); 214 VIRTUALKD *pThis = PDMDEVINS_2_DATA(pDevIns, VIRTUALKD *); 215 PCPDMDEVHLPR3 pHlp = pDevIns->pHlpR3; 215 216 RT_NOREF(iInstance); 216 217 … … 228 229 229 230 char szPath[RTPATH_MAX]; 230 int rc = CFGMR3QueryStringDef(pCfg, "Path", szPath, sizeof(szPath) - sizeof("kdclient64.dll"), "");231 int rc = pHlp->pfnCFGMQueryStringDef(pCfg, "Path", szPath, sizeof(szPath) - sizeof("kdclient64.dll"), ""); 231 232 if (RT_FAILURE(rc)) 232 233 return PDMDEV_SET_ERROR(pDevIns, rc, N_("Configuration error: Failed to get the \"Path\" value"));
Note:
See TracChangeset
for help on using the changeset viewer.