From: jwang36 Date: Fri, 22 Dec 2006 09:56:35 +0000 (+0000) Subject: Fixed the issue in which local variable "Status" is used but not defined. X-Git-Tag: edk2-stable201903~23745 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=1d67f00e73e8078f3f4baa2090b5d394c9b32d6b Fixed the issue in which local variable "Status" is used but not defined. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2132 6f19259b-4bc3-4df7-8a09-765794883524 --- diff --git a/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c b/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c index ea88b774f8..b7cdb9db45 100644 --- a/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c +++ b/EdkModulePkg/Core/DxeIplPeim/Ipf/DxeLoadFunc.c @@ -31,6 +31,7 @@ HandOffToDxeCore ( VOID *BaseOfStack; VOID *TopOfStack; VOID *BspStore; + EFI_STATUS Status; // // Allocate 128KB for the Stack diff --git a/EdkModulePkg/Core/DxeIplPeim/X64/DxeLoadFunc.c b/EdkModulePkg/Core/DxeIplPeim/X64/DxeLoadFunc.c index 83b00bb486..53febd563d 100644 --- a/EdkModulePkg/Core/DxeIplPeim/X64/DxeLoadFunc.c +++ b/EdkModulePkg/Core/DxeIplPeim/X64/DxeLoadFunc.c @@ -30,6 +30,7 @@ HandOffToDxeCore ( { VOID *BaseOfStack; VOID *TopOfStack; + EFI_STATUS Status; // // Allocate 128KB for the Stack