Changeset 59543 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Feb 1, 2016 1:31:19 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r59542 r59543 1458 1458 LSA_UNICODE_STRING lsaUser; 1459 1459 lsaUser.Buffer = accountInfo.pwszUserName; 1460 lsaUser.Length = RTUtf16Len(accountInfo.pwszUserName) * sizeof(WCHAR);1460 lsaUser.Length = (USHORT)(RTUtf16Len(accountInfo.pwszUserName) * sizeof(WCHAR)); 1461 1461 lsaUser.MaximumLength = lsaUser.Length; 1462 1462 … … 1719 1719 } 1720 1720 1721 LogRelFunc(("dwErr=%u (%#x), rc=%Rrc\n", dwErr, dwErr, rc));1722 1721 return rc; 1723 1722 }
Note:
See TracChangeset
for help on using the changeset viewer.