Changeset 49043 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Oct 11, 2013 12:58:02 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/symlink-win.cpp
r47596 r49043 158 158 if (RT_SUCCESS(rc)) 159 159 { 160 /* The link target path must use backslashes to work reliably. */ 161 RTUTF16 wc; 162 PRTUTF16 pwsz = pwszNativeTarget; 163 while ((wc = *pwsz) != '\0') 164 { 165 if (wc == '/') 166 *pwsz = '\\'; 167 pwsz++; 168 } 169 160 170 /* 161 171 * Massage the target path, determin the link type.
Note:
See TracChangeset
for help on using the changeset viewer.