Changeset 67598 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Jun 26, 2017 9:17:22 AM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 116356
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getoptargv.cpp
r66861 r67598 231 231 AssertPtr(pcArgs); 232 232 AssertPtr(ppapszArgv); 233 AssertReturn( fFlags == RTGETOPTARGV_CNV_QUOTE_BOURNE_SH 234 || fFlags == RTGETOPTARGV_CNV_QUOTE_MS_CRT, VERR_INVALID_FLAGS); 233 AssertReturn( (fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) == RTGETOPTARGV_CNV_QUOTE_BOURNE_SH 234 || (fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) == RTGETOPTARGV_CNV_QUOTE_MS_CRT, VERR_INVALID_FLAGS); 235 AssertReturn(~(fFlags & ~RTGETOPTARGV_CNV_VALID_MASK), VERR_INVALID_FLAGS); 236 235 237 if (!pszSeparators) 236 238 pszSeparators = " \t\n\r"; … … 243 245 * Parse the command line and chop off it into argv individual argv strings. 244 246 */ 247 const char *pszSrc = pszCmdLine; 248 char *pszDup = NULL; 249 char *pszDst; 250 if (fFlags & RTGETOPTARGV_CNV_MODIFY_INPUT) 251 pszDst = (char *)pszCmdLine; 252 else 253 { 254 pszDst = pszDup = (char *)RTMemAlloc(strlen(pszSrc) + 1); 255 if (!pszDup) 256 return VERR_NO_STR_MEMORY; 257 } 245 258 int rc = VINF_SUCCESS; 246 const char *pszSrc = pszCmdLine;247 char *pszDup = (char *)RTMemAlloc(strlen(pszSrc) + 1);248 char *pszDst = pszDup;249 if (!pszDup)250 return VERR_NO_STR_MEMORY;251 259 char **papszArgs = NULL; 252 260 unsigned iArg = 0; … … 425 433 RTDECL(void) RTGetOptArgvFree(char **papszArgv) 426 434 { 435 RTGetOptArgvFreeEx(papszArgv, 0); 436 } 437 438 439 RTDECL(void) RTGetOptArgvFreeEx(char **papszArgv, uint32_t fFlags) 440 { 441 Assert(~(fFlags & ~RTGETOPTARGV_CNV_VALID_MASK)); 427 442 if (papszArgv) 428 443 { … … 431 446 * RTGetOptArgvFromString for the particulars. 432 447 */ 433 RTMemFree(papszArgv[0]); 448 if (!(fFlags & RTGETOPTARGV_CNV_MODIFY_INPUT)) 449 RTMemFree(papszArgv[0]); 434 450 RTMemFree(papszArgv); 435 451 } … … 502 518 RTDECL(int) RTGetOptArgvToString(char **ppszCmdLine, const char * const *papszArgv, uint32_t fFlags) 503 519 { 504 AssertReturn(fFlags <= RTGETOPTARGV_CNV_UNQUOTED, VERR_INVALID_PARAMETER); 520 AssertReturn((fFlags & RTGETOPTARGV_CNV_QUOTE_MASK) <= RTGETOPTARGV_CNV_UNQUOTED, VERR_INVALID_FLAGS); 521 AssertReturn(!(fFlags & (~RTGETOPTARGV_CNV_VALID_MASK | RTGETOPTARGV_CNV_MODIFY_INPUT)), VERR_INVALID_FLAGS); 505 522 506 523 #define PUT_CH(ch) \
Note:
See TracChangeset
for help on using the changeset viewer.