Changeset 27386 in vbox
- Timestamp:
- Mar 15, 2010 10:39:19 PM (15 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/getoptargv.cpp
r27384 r27386 383 383 while (*psz == '\\') 384 384 psz++; 385 return *psz == '"' ;385 return *psz == '"' || *psz == '\0'; 386 386 } 387 387 -
trunk/src/VBox/Runtime/testcase/tstRTGetOptArgv.cpp
r27384 r27386 64 64 }, 65 65 { 66 { "a\\\\b c", "d", "e", NULL, NULL },67 "\"a\\\\b c\" d e "66 { "a\\\\b c", "d", "e", " \\", NULL }, 67 "\"a\\\\b c\" d e \" \\\\\"" 68 68 }, 69 69 };
Note:
See TracChangeset
for help on using the changeset viewer.