Changeset 66014 in vbox
- Timestamp:
- Mar 9, 2017 1:26:18 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedFolders/testcase/tstSharedFolderService.cpp
r66013 r66014 518 518 /* Copy pcszSource ASCIIZ, including the trailing 0, to the UTF16 pDest->string.String.ucs2. */ 519 519 for (unsigned i = 0; i <= cchSource; ++i) 520 ((uint16_t*)pDest->string.String.ucs2)[i] = (uint16_t)pcszSource[i];520 pDest->string.String.ucs2[i] = (uint16_t)pcszSource[i]; 521 521 } 522 522
Note:
See TracChangeset
for help on using the changeset viewer.