Changeset 3205 in kBuild for trunk/src/kmk
- Timestamp:
- Mar 29, 2018 12:42:24 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/w32/winchildren.c
r3203 r3205 1438 1438 case '"': 1439 1439 if (fFlags & (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_MKS_SHELL)) 1440 cwcDstExtra += 1; 1440 cwcDstExtra += 1; /* just an extra '"' */ 1441 1441 else 1442 cwcDstExtra += 1 + cBackslashes; 1442 cwcDstExtra += 1 + cBackslashes; /* extra '\\' for the '"' and for each preceeding slash. */ 1443 cBackslashes = 0; 1443 1444 break; 1444 1445 … … 1455 1456 } 1456 1457 1458 /* If we're quoting the argument and it ends with trailing '\\', it/they must be escaped. */ 1457 1459 if ( cBackslashes > 0 1458 1460 && paArgInfo[i].fQuoteIt … … 1507 1509 /* Do the conversion into the end of the output buffer, then move 1508 1510 it up to where it should be char by char. */ 1509 size_tcBackslashes;1511 int cBackslashes; 1510 1512 size_t cwcLeft = paArgInfo[i].cwcDst - paArgInfo[i].cwcDstExtra; 1511 1513 WCHAR volatile *pwchSlowSrc = pwszDst + paArgInfo[i].cwcDstExtra; … … 1525 1527 else if ( (fFlags & (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_HAVE_SH)) 1526 1528 == (MKWCCWCMD_F_CYGWIN_SHELL | MKWCCWCMD_F_HAVE_SH)) 1529 { 1527 1530 *pwchSlowDst++ = L'"'; /* cygwin: '"' instead of '\\', no escaped slashes. */ 1531 cBackslashes = 0; 1532 } 1528 1533 else 1529 1534 { 1530 1535 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 { 1533 1539 *pwchSlowDst++ = L'\\'; 1540 cBackslashes--; 1541 } 1534 1542 } 1535 1543 *pwchSlowDst++ = wcSrc; 1544 assert((uintptr_t)pwchSlowDst <= (uintptr_t)pwchSlowSrc); 1536 1545 } 1537 1546
Note:
See TracChangeset
for help on using the changeset viewer.