VirtualBox

Changeset 40156 in vbox for trunk/src


Ignore:
Timestamp:
Feb 16, 2012 4:31:01 PM (13 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
76309
Message:

Main and FE/Qt: do not put slashes, control characters and a few others into VM file names by default. Policy adjustment.

Location:
trunk/src/VBox
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VirtualBox/src/wizards/newvm/UINewVMWzd.cpp

    r40153 r40156  
    314314    /* Get machine directory: */
    315315    QString strMachineFolder = fileInfo.absolutePath();
    316     QString strMachineBaseName = fileInfo.baseName();
     316    QString strMachineBaseName = fileInfo.completeBaseName();
    317317
    318318    /* Try to create this machine directory (and it's predecessors): */
  • trunk/src/VBox/Main/src-server/VirtualBoxImpl.cpp

    r40153 r40156  
    13311331     * characters which need UTF-16 surrogate pairs for Windows's benefit. */
    13321332    RTUNICP aCpSet[] =
    1333         { ' ', ' ', '(', ')', '-', '-', '0', '9', 'A', 'Z', 'a', 'z', '_', '_',
     1333        { ' ', ' ', '(', ')', '-', '.', '0', '9', 'A', 'Z', 'a', 'z', '_', '_',
    13341334          0xa0, 0xd7af, '\0' };
    1335     Assert(RTStrPurgeComplementSet(strName.mutableRaw(), aCpSet, '_') > 0);
     1335    char *pszName = strName.mutableRaw();
     1336    Assert(RTStrPurgeComplementSet(pszName, aCpSet, '_') > 0);
     1337    /* No leading dot or dash. */
     1338    if (pszName[0] == '.' || pszName[0] == '-')
     1339        pszName[0] = '_';
     1340    /* No trailing dot. */
     1341    if (pszName[strName.length() - 1] == '.')
     1342        pszName[strName.length() - 1] = '_';
     1343    /* Mangle leading and trailing spaces. */
     1344    for (size_t i = 0; pszName[i] == ' '; ++i)
     1345       pszName[i] = '_';
     1346    for (size_t i = strName.length() - 1; i && pszName[i] == ' '; --i)
     1347       pszName[i] = '_';
     1348
    13361349    if (strBase.isEmpty())
    13371350        /* we use the non-full folder value below to keep the path relative */
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