Changeset 90063 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jul 6, 2021 12:50:55 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/efi/efivarstorevfs.cpp
r90061 r90063 1404 1404 if (RT_LE2H_U32(VarHdr.cbName) > sizeof(awchName) - sizeof(RTUTF16)) 1405 1405 return RTERRINFO_LOG_SET_F(pErrInfo, VERR_VFS_UNSUPPORTED_FORMAT, "Variable name is too long (%llu vs. %llu)\n", 1406 RT_LE2H_U32(VarHdr.cbName), RT_LE2H_U32(VarHdr.cbName),sizeof(awchName));1406 RT_LE2H_U32(VarHdr.cbName), sizeof(awchName)); 1407 1407 1408 1408 rc = RTVfsFileReadAt(pThis->hVfsBacking, offVar + sizeof(VarHdr), &awchName[0], RT_LE2H_U32(VarHdr.cbName), NULL);
Note:
See TracChangeset
for help on using the changeset viewer.