Changeset 46179 in vbox
- Timestamp:
- May 20, 2013 9:38:38 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/path/RTPathParse.cpp.h
r45397 r46179 74 74 fProps = RTPATH_PROP_ROOT_SLASH | RTPATH_PROP_UNC | RTPATH_PROP_ABSOLUTE; 75 75 offCur++; 76 cchPath = offCur; 76 77 } 77 78 else … … 79 80 fProps = RTPATH_PROP_ROOT_SLASH | RTPATH_PROP_RELATIVE; 80 81 offCur = 1; 82 cchPath = 1; 81 83 } 82 84 } … … 90 92 #endif 91 93 offCur = 1; 94 cchPath = 1; 92 95 } 93 96 } … … 105 108 offCur = 3; 106 109 } 110 cchPath = offCur; 107 111 } 108 112 #endif … … 114 118 } 115 119 116 /* 120 /* Add it to the component array . */ 117 121 if (offCur && !(fFlags & RTPATH_STR_F_NO_START)) 118 122 {
Note:
See TracChangeset
for help on using the changeset viewer.