Changeset 84855 in vbox for trunk/src/VBox/ValidationKit/utils/TestExecServ
- Timestamp:
- Jun 16, 2020 8:03:06 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 138673
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/utils/TestExecServ/TestExecService.cpp
r84794 r84855 553 553 char *pszNew = RTStrDup(pszSrc); 554 554 char *pszDollar = pszNew; 555 while ((pszDollar = strchr(pszDollar, '$')) != NULL) 556 { 557 /** @todo employ $$ as escape sequence here. */ 555 while (pszDollar && (pszDollar = strchr(pszDollar, '$')) != NULL) 556 { 558 557 if (pszDollar[1] == '{') 559 558 { … … 639 638 cchNew -= 1; 640 639 } 640 else /* No match, move to next char to avoid endless looping. */ 641 pszDollar++; 641 642 } 642 643
Note:
See TracChangeset
for help on using the changeset viewer.