Changeset 104635 in vbox for trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
- Timestamp:
- May 15, 2024 9:29:32 AM (7 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r103415 r104635 1210 1210 /* Protocol version 1 sends the file path *every* time with a new file chunk. 1211 1211 * In protocol version 2 we only do this once with HOST_DND_FN_HG_SND_FILE_HDR. */ 1212 if (m_pState->m_uProtocolVersion <= 1) 1212 AssertReturn(m_pState->m_uProtocolVersion, VERR_WRONG_ORDER); 1213 if (m_pState->m_uProtocolVersion == 1) 1213 1214 { 1214 1215 const size_t cchDstPath = RTStrNLen(pcszDstPath, RTPATH_MAX);
Note:
See TracChangeset
for help on using the changeset viewer.