Changeset 97557 in vbox for trunk/src/VBox/Main
- Timestamp:
- Nov 15, 2022 7:50:05 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestCtrlPrivate.cpp
r97538 r97557 1787 1787 uint8_t ab[4096]; 1788 1788 } u; 1789 RTPATHPARSED Parsed; 1790 vrc = RTPathParse(strDstPath.c_str(), &Parsed, sizeof(u), enmDstPathStyle == PathStyle_DOS 1791 ? RTPATH_STR_F_STYLE_DOS : RTPATH_STR_F_STYLE_UNIX); 1789 vrc = RTPathParse(strDstPath.c_str(), &u.Parsed, sizeof(u), enmDstPathStyle == PathStyle_DOS 1790 ? RTPATH_STR_F_STYLE_DOS : RTPATH_STR_F_STYLE_UNIX); 1792 1791 if (RT_SUCCESS(vrc)) 1793 1792 { 1794 if ( Parsed.fProps & RTPATH_PROP_DOTDOT_REFS) /* #4 */1793 if (u.Parsed.fProps & RTPATH_PROP_DOTDOT_REFS) /* #4 */ 1795 1794 vrc = VERR_INVALID_PARAMETER; 1796 1795 }
Note:
See TracChangeset
for help on using the changeset viewer.