Changeset 103415 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Feb 19, 2024 7:52:27 AM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161736
- Location:
- trunk/src/VBox/Main/src-client
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestDnDSourceImpl.cpp
r98273 r103415 931 931 932 932 const char *pcszSource = DnDTransferObjectGetSourcePath(pObj); 933 AssertPtrBreakStmt(pcszSource, VERR_INVALID_POINTER);933 AssertPtrBreakStmt(pcszSource, vrc = VERR_INVALID_POINTER); 934 934 935 935 /** @todo Add sparse file support based on fFlags? (Use Open(..., fFlags | SPARSE). */ … … 1006 1006 1007 1007 const char *pcszSource = DnDTransferObjectGetSourcePath(pObj); 1008 AssertPtrBreakStmt(pcszSource, VERR_INVALID_POINTER);1008 AssertPtrBreakStmt(pcszSource, vrc = VERR_INVALID_POINTER); 1009 1009 1010 1010 AssertMsgReturn(DnDTransferObjectIsOpen(pObj), -
trunk/src/VBox/Main/src-client/GuestDnDTargetImpl.cpp
r98278 r103415 1008 1008 1009 1009 pvChunk += cbChunk; 1010 AssertBreakStmt(cbData >= cbChunk, VERR_BUFFER_UNDERFLOW);1010 AssertBreakStmt(cbData >= cbChunk, vrc = VERR_BUFFER_UNDERFLOW); 1011 1011 cbData -= cbChunk; 1012 1012 }
Note:
See TracChangeset
for help on using the changeset viewer.