Changeset 107887 in vbox
- Timestamp:
- Jan 22, 2025 11:02:17 AM (2 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/installation/VBoxWinDrvInst.cpp
r107825 r107887 283 283 } 284 284 285 #if 0 /* Unused */ 285 286 /** 286 287 * Logs an error message but ignores (skips) the error count. … … 317 318 return rc; 318 319 } 320 #endif /* Unused */ 319 321 320 322 /** … … 1394 1396 rc = vboxWinDrvInstLogLastError(pCtx, "GetFullPathNameW() failed"); 1395 1397 1396 rc = vboxWinDrvTryInfSection(pCtx, 1397 pParms->pwszInfFile, pParms->u.UnInstall.pwszSection, 1398 vboxWinDrvInstallTryInfSectionCallback); 1398 if (RT_SUCCESS(rc)) 1399 rc = vboxWinDrvTryInfSection(pCtx, 1400 pParms->pwszInfFile, pParms->u.UnInstall.pwszSection, 1401 vboxWinDrvInstallTryInfSectionCallback); 1399 1402 } 1400 1403 … … 2204 2207 if (RT_SUCCESS(rc) && pszSection) /* pszSection is optional. */ 2205 2208 rc = RTStrToUtf16(pszSection, &pCtx->Parms.u.ExecuteInf.pwszSection); 2209 AssertRCReturn(rc, rc); 2206 2210 2207 2211 pCtx->Parms.enmMode = fInstall ? VBOXWINDRVINSTMODE_INSTALL_INFSECTION : VBOXWINDRVINSTMODE_UNINSTALL_INFSECTION;
Note:
See TracChangeset
for help on using the changeset viewer.