Changeset 82495 in vbox for trunk/src/VBox/GuestHost/SharedClipboard/ClipboardStreamImpl-win.cpp
- Timestamp:
- Dec 7, 2019 12:22:38 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/SharedClipboard/ClipboardStreamImpl-win.cpp
r82466 r82495 283 283 if (pStatStg) 284 284 { 285 RT_ BZERO(pStatStg, sizeof(STATSTG));285 RT_ZERO(*pStatStg); 286 286 287 287 switch (dwFlags) … … 293 293 case STATFLAG_DEFAULT: 294 294 { 295 /** @todo r=bird: This is using the wrong allocator. According to MSDN the 296 * caller will pass this to CoTaskMemFree, so we should use CoTaskMemAlloc to 297 * allocate it. */ 295 298 int rc2 = RTStrToUtf16(m_strPath.c_str(), &pStatStg->pwcsName); 296 299 if (RT_FAILURE(rc2))
Note:
See TracChangeset
for help on using the changeset viewer.