Changeset 91383 in vbox
- Timestamp:
- Sep 27, 2021 9:59:01 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 147062
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/EFI/FlashCore.cpp
r91329 r91383 486 486 if (RT_SUCCESS(rc)) 487 487 { 488 if (cbFlash == pThis->cbFlashSize)488 if (cbFlash <= pThis->cbFlashSize) 489 489 rc = pDrvVfs->pfnReadAll(pDrvVfs, pszNamespace, pszPath, pThis->pbFlash, pThis->cbFlashSize); 490 490 else 491 return PDMDEV_SET_ERROR(pDevIns, VERR_ MISMATCH, N_("Size of the flash device and the content to load doesn't match"));491 return PDMDEV_SET_ERROR(pDevIns, VERR_BUFFER_OVERFLOW, N_("Configured flash size is too small to fit the saved NVRAM content")); 492 492 } 493 493
Note:
See TracChangeset
for help on using the changeset viewer.