Changeset 34199 in vbox
- Timestamp:
- Nov 19, 2010 1:52:20 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Installer/win/Stub/VBoxStub.cpp
r34195 r34199 460 460 vrc = RTPathAppend(szExtractPath, sizeof(szExtractPath), "VirtualBox"); 461 461 AssertMsgRCBreak(vrc, ("Could not construct temp directory!\n")); 462 463 /* Convert slahes; this is necessary for MSI routines later! */ 464 RTPathChangeToDosSlashes(szExtractPath, true /* Force conversion. */); 462 465 } 463 466 if (!RTDirExists(szExtractPath)) … … 507 510 */ 508 511 char *pszPathCustomDir = RTPathJoinA(szPathExe, ".custom"); 512 pszPathCustomDir = RTPathChangeToDosSlashes(pszPathCustomDir, true /* Force conversion. */); 509 513 if (pszPathCustomDir && RTDirExists(pszPathCustomDir)) 510 514 { … … 548 552 { 549 553 char *pszLog = RTPathJoinA(szExtractPath, "VBoxInstallLog.txt"); 554 /* Convert slahes; this is necessary for MSI routines! */ 555 pszLog = RTPathChangeToDosSlashes(pszLog, true /* Force conversion. */); 550 556 AssertMsgBreak(pszLog, ("Could not construct path for log file!\n")); 551 557 UINT uLogLevel = MsiEnableLog(INSTALLLOGMODE_VERBOSE,
Note:
See TracChangeset
for help on using the changeset viewer.