Changeset 57297 in vbox for trunk/src/VBox/Additions
- Timestamp:
- Aug 12, 2015 2:31:28 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/VBoxTray/VBoxDnDDropTarget.cpp
r55422 r57297 409 409 AssertMsg(cchFile == cch, ("cchCopied (%RU16) does not match cchFile (%RU16)\n", 410 410 cchFile, cch)); 411 int rc2 = RTUtf16ToUtf8(pwszFile, &pszFile); 412 AssertRC(rc2); 411 rc = RTUtf16ToUtf8(pwszFile, &pszFile); 412 AssertRC(rc); 413 414 RTMemFree(pwszFile); 413 415 } 414 416 else … … 442 444 443 445 if (pszFile) 444 RT MemFree(pszFile);446 RTStrFree(pszFile); 445 447 446 448 if (RT_FAILURE(rc))
Note:
See TracChangeset
for help on using the changeset viewer.