Changeset 7430 in vbox for trunk/src/VBox/Main/glue
- Timestamp:
- Mar 12, 2008 10:16:03 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/glue/com.cpp
r7418 r7430 119 119 if (RT_SUCCESS (RTStrCurrentCPToUtf8 (&utf8IName, iname))) 120 120 { 121 PRTU CS2 ucs2IName = NULL;122 if (RT_SUCCESS (RTStrToUtf16 (utf8IName, &u cs2IName)))121 PRTUTF16 utf16IName = NULL; 122 if (RT_SUCCESS (RTStrToUtf16 (utf8IName, &utf16IName))) 123 123 { 124 *aName = SysAllocString ((OLECHAR *) u cs2IName);125 RTUtf16Free (u cs2IName);124 *aName = SysAllocString ((OLECHAR *) utf16IName); 125 RTUtf16Free (utf16IName); 126 126 } 127 127 RTStrFree (utf8IName);
Note:
See TracChangeset
for help on using the changeset viewer.