mirror of https://github.com/acidanthera/audk.git
Fix the build warning of potential uninitialized variable of "SizeOfHeaders".
Update the file to use \r\n as end of line git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9899 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
04bb6788dd
commit
a3deae0da3
|
@ -1,6 +1,6 @@
|
||||||
/**@file
|
/**@file
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation
|
Copyright (c) 2006 - 2010, Intel Corporation
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -283,7 +283,7 @@ PeCoffLoaderGetPdbPointer (
|
||||||
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
@param Pe32Data Pointer to the PE/COFF image that is loaded in system
|
||||||
memory.
|
memory.
|
||||||
|
|
||||||
@return Size of PE/COFF header in bytes or zero if not a valid iamge.
|
@return Size of PE/COFF header in bytes or zero if not a valid image.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINT32
|
UINT32
|
||||||
|
@ -312,9 +312,11 @@ PeCoffGetSizeOfHeaders (
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
|
if (Hdr.Te->Signature == EFI_TE_IMAGE_HEADER_SIGNATURE) {
|
||||||
SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
|
SizeOfHeaders = sizeof (EFI_TE_IMAGE_HEADER) + (UINTN)Hdr.Te->BaseOfCode - (UINTN)Hdr.Te->StrippedSize;
|
||||||
} else if (Hdr.Pe32->Signature == EFI_IMAGE_NT_SIGNATURE) {
|
} else if (Hdr.Pe32->Signature == EFI_IMAGE_NT_SIGNATURE) {
|
||||||
SizeOfHeaders = Hdr.Pe32->OptionalHeader.SizeOfHeaders;
|
SizeOfHeaders = Hdr.Pe32->OptionalHeader.SizeOfHeaders;
|
||||||
|
} else {
|
||||||
|
SizeOfHeaders = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return SizeOfHeaders;
|
return SizeOfHeaders;
|
||||||
|
|
Loading…
Reference in New Issue