VirtualBox

Changeset 3205 in kBuild for trunk/src/kmk


Ignore:
Timestamp:
Mar 29, 2018 12:42:24 AM (7 years ago)
Author:
bird
Message:

kmk/winchildren.c: Fixed argv -> cmdline conversion bug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/w32/winchildren.c

    r3203 r3205  
    14381438                        case '"':
    14391439                            if (fFlags & (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_MKS_SHELL))
    1440                                 cwcDstExtra += 1;
     1440                                cwcDstExtra += 1; /* just an extra '"' */
    14411441                            else
    1442                                 cwcDstExtra += 1 + cBackslashes;
     1442                                cwcDstExtra += 1 + cBackslashes; /* extra '\\' for the '"' and for each preceeding slash. */
     1443                            cBackslashes = 0;
    14431444                            break;
    14441445
     
    14551456                }
    14561457
     1458                /* If we're quoting the argument and it ends with trailing '\\', it/they must be escaped. */
    14571459                if (   cBackslashes > 0
    14581460                    && paArgInfo[i].fQuoteIt
     
    15071509            /* Do the conversion into the end of the output buffer, then move
    15081510               it up to where it should be char by char.  */
    1509             size_t          cBackslashes;
     1511            int             cBackslashes;
    15101512            size_t          cwcLeft     = paArgInfo[i].cwcDst - paArgInfo[i].cwcDstExtra;
    15111513            WCHAR volatile *pwchSlowSrc = pwszDst + paArgInfo[i].cwcDstExtra;
     
    15251527                else if (   (fFlags & (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_HAVE_SH))
    15261528                         ==           (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_HAVE_SH))
     1529                {
    15271530                    *pwchSlowDst++ = L'"'; /* cygwin: '"' instead of '\\', no escaped slashes. */
     1531                    cBackslashes = 0;
     1532                }
    15281533                else
    15291534                {
    15301535                    if (!(fFlags & (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_MKS_SHELL)))
    1531                         cBackslashes = 1;
    1532                     while (cBackslashes-- > 0)
     1536                        cBackslashes += 1; /* one extra escape the '"' and one for each preceeding slash. */
     1537                    while (cBackslashes > 0)
     1538                    {
    15331539                        *pwchSlowDst++ = L'\\';
     1540                        cBackslashes--;
     1541                    }
    15341542                }
    15351543                *pwchSlowDst++ = wcSrc;
     1544                assert((uintptr_t)pwchSlowDst <= (uintptr_t)pwchSlowSrc);
    15361545            }
    15371546
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