mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[FREELDR]
Display an error message with the file name in case we cannot get a file size over PXE. This makes the error message "(../../boot/freeldr/freeldr/fs/pxe.c:107) err: PxeCall(0x25, 0000E8DE) failed with exit=1 status=0x1" in case of PXE boot less dramatic: it is expected not to find NTBOOTDD.SYS svn path=/trunk/; revision=65917
This commit is contained in:
@@ -162,7 +162,11 @@ static LONG PxeOpen(CHAR* Path, OPENMODE OpenMode, ULONG* FileId)
|
||||
sizeData.ServerIPAddress = _ServerIP;
|
||||
strncpy((CHAR*)sizeData.FileName, Path, sizeof(sizeData.FileName));
|
||||
if (!CallPxe(PXENV_TFTP_GET_FSIZE, &sizeData))
|
||||
{
|
||||
ERR("Failed to get '%s' size\n", Path);
|
||||
return EIO;
|
||||
}
|
||||
|
||||
_FileSize = sizeData.FileSize;
|
||||
if (_FileSize < 1024 * 1024)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user