VirtualBox

Ignore:
Timestamp:
Dec 1, 2010 9:08:55 AM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
68338
Message:

Windows installer: fixed misinterpretation of the sizeOfBuffer parameter of _stprintf_s => swprintf_s

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Installer/win/InstallHelper/VBoxInstallHelper.cpp

    r32112 r34547  
    193193            break;
    194194
    195         _stprintf_s(szPath, sizeof(szPath), L"%s\\InstallPath", szRoot);
     195        _stprintf_s(szPath, sizeof(szPath) / sizeof(TCHAR), L"%s\\InstallPath", szRoot);
    196196        dwLen = sizeof(szVal);
    197197
     
    216216        /* Cool, check for installed Win32 extensions. */
    217217        LogString(hModule, TEXT("InstallPythonAPI: Python installed. Checking for Win32 extensions ..."));
    218         _stprintf_s(szExec, sizeof(szExec), L"%s\\python.exe", szVal);
    219         _stprintf_s(szCmdLine, sizeof(szCmdLine), L"%s\\python.exe -c \"import win32api\"", szVal);
     218        _stprintf_s(szExec, sizeof(szExec) / sizeof(TCHAR), L"%s\\python.exe", szVal);
     219        _stprintf_s(szCmdLine, sizeof(szCmdLine) / sizeof(TCHAR), L"%s\\python.exe -c \"import win32api\"", szVal);
    220220
    221221        if (   (0 == Exec(hModule, szExec, szCmdLine, NULL, &dwExitCode))
     
    236236
    237237        /* Set final path. */
    238         _stprintf_s(szPath, sizeof(szPath), L"%s\\sdk\\install", szVBoxAPISetupPath);
     238        _stprintf_s(szPath, sizeof(szPath) / sizeof(TCHAR), L"%s\\sdk\\install", szVBoxAPISetupPath);
    239239
    240240        /* Install our API module. */
    241         _stprintf_s(szCmdLine, sizeof(szCmdLine), L"%s\\python.exe vboxapisetup.py install", szVal);
     241        _stprintf_s(szCmdLine, sizeof(szCmdLine) / sizeof(TCHAR), L"%s\\python.exe vboxapisetup.py install", szVal);
    242242
    243243        /* Set required environment variables. */
     
    278278
    279279        if (wcsicmp(L"General", pszSection) != 0)
    280             _stprintf_s(szKey, sizeof(szKey), L"SOFTWARE\\%s\\VirtualBox\\Branding\\", VBOX_VENDOR_SHORT, pszSection);
     280            _stprintf_s(szKey, sizeof(szKey) / sizeof(TCHAR), L"SOFTWARE\\%s\\VirtualBox\\Branding\\", VBOX_VENDOR_SHORT, pszSection);
    281281        else
    282             _stprintf_s(szKey, sizeof(szKey), L"SOFTWARE\\%s\\VirtualBox\\Branding", VBOX_VENDOR_SHORT);
     282            _stprintf_s(szKey, sizeof(szKey) / sizeof(TCHAR), L"SOFTWARE\\%s\\VirtualBox\\Branding", VBOX_VENDOR_SHORT);
    283283
    284284        rc = RegOpenKeyEx(HKEY_LOCAL_MACHINE, szKey,
     
    308308    TCHAR szSource[_MAX_PATH + 1];
    309309
    310     _stprintf_s(szDest, sizeof(szDest), L"%s%c", pszDestDir, '\0');
    311     _stprintf_s(szSource, sizeof(szSource), L"%s%c", pszSourceDir, '\0');
     310    _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0');
     311    _stprintf_s(szSource, sizeof(szSource) / sizeof(TCHAR), L"%s%c", pszSourceDir, '\0');
    312312
    313313    SHFILEOPSTRUCT s = {0};
     
    339339    TCHAR szDest[_MAX_PATH + 1];
    340340
    341     _stprintf_s(szDest, sizeof(szDest), L"%s%c", pszDestDir, '\0');
     341    _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0');
    342342
    343343    SHFILEOPSTRUCT s = {0};
     
    368368    TCHAR szSource[_MAX_PATH + 1];
    369369
    370     _stprintf_s(szDest, sizeof(szDest), L"%s%c", pszDestDir, '\0');
    371     _stprintf_s(szSource, sizeof(szSource), L"%s%c", pszSourceDir, '\0');
     370    _stprintf_s(szDest, sizeof(szDest) / sizeof(TCHAR), L"%s%c", pszDestDir, '\0');
     371    _stprintf_s(szSource, sizeof(szSource) / sizeof(TCHAR), L"%s%c", pszSourceDir, '\0');
    372372
    373373    SHFILEOPSTRUCT s = {0};
     
    406406    {
    407407        /** @todo Check trailing slash after %s. */
    408         _stprintf_s(szPathDest, sizeof(szPathDest), L"%scustom", szPathTargetDir);
     408        _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%scustom", szPathTargetDir);
    409409        rc = RemoveDir(hModule, szPathDest);
    410410        if (rc != ERROR_SUCCESS)
    411411        {
    412412            /* Check for hidden .custom directory and remove it. */
    413             _stprintf_s(szPathDest, sizeof(szPathDest), L"%s.custom", szPathTargetDir);
     413            _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%s.custom", szPathTargetDir);
    414414            rc = RemoveDir(hModule, szPathDest);
    415415        }
     
    436436    {
    437437        /** @todo Check for trailing slash after %s. */
    438         _stprintf_s(szPathDest, sizeof(szPathDest), L"%s", szPathTargetDir);
    439         _stprintf_s(szPathSource, sizeof(szPathSource), L"%s.custom", szPathMSI);
     438        _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%s", szPathTargetDir);
     439        _stprintf_s(szPathSource, sizeof(szPathSource) / sizeof(TCHAR), L"%s.custom", szPathMSI);
    440440        rc = CopyDir(hModule, szPathDest, szPathSource);
    441441        if (rc == ERROR_SUCCESS)
    442442        {
    443             _stprintf_s(szPathDest, sizeof(szPathDest), L"%scustom", szPathTargetDir);
    444             _stprintf_s(szPathSource, sizeof(szPathSource), L"%s.custom", szPathTargetDir);
     443            _stprintf_s(szPathDest, sizeof(szPathDest) / sizeof(TCHAR), L"%scustom", szPathTargetDir);
     444            _stprintf_s(szPathSource, sizeof(szPathSource) / sizeof(TCHAR), L"%s.custom", szPathTargetDir);
    445445            rc = RenameDir(hModule, szPathDest, szPathSource);
    446446        }
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette