X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=BaseTools%2FSource%2FC%2FBootSectImage%2Fbootsectimage.c;h=fd367c28b36d100995d762cb3515b51c60ed7144;hp=36e896e5c4bee0866715711e17587e6f481ff12c;hb=1be2ed90a20618d71ddf34b8a07d038da0b36854;hpb=b8a13d736961faff0d11241a0428abc44a084d6e diff --git a/BaseTools/Source/C/BootSectImage/bootsectimage.c b/BaseTools/Source/C/BootSectImage/bootsectimage.c index 36e896e5c4..fd367c28b3 100644 --- a/BaseTools/Source/C/BootSectImage/bootsectimage.c +++ b/BaseTools/Source/C/BootSectImage/bootsectimage.c @@ -4,7 +4,7 @@ Abstract: Patch the BPB information in boot sector image file. Patch the MBR code in MBR image file. -Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
This program and the accompanying materials are licensed and made available under the terms and conditions of the BSD License which accompanies this distribution. The full text of the license may be found at @@ -116,7 +116,7 @@ Return: FILE *FileHandle; int result; - FileHandle = fopen (FileName, "r+b"); + FileHandle = fopen (LongFilePath (FileName), "r+b"); if (FileHandle == NULL) { DebugMsg (NULL, 0, DEBUG_ERROR, NULL, "Open file: %s", FileName); return 0; @@ -154,7 +154,7 @@ Return: FILE *FileHandle; int result; - FileHandle = fopen (FileName, "rb"); + FileHandle = fopen (LongFilePath (FileName), "rb"); if (FileHandle == NULL) { DebugMsg (NULL, 0, DEBUG_ERROR, NULL, "ERROR: E0001: Error opening file: %s", FileName); return 0;