Add type cast on variable before operation.
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Jeff Fan <jeff.fan@intel.com> Reviewed-by: Eric Dong <Eric.Dong@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15778 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
/** @file
|
||||
|
||||
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions
|
||||
@@ -226,7 +226,7 @@ RelocateImageUnder4GIfNeeded (
|
||||
// Align buffer on section boundry
|
||||
//
|
||||
ImageContext.ImageAddress += ImageContext.SectionAlignment - 1;
|
||||
ImageContext.ImageAddress &= ~(ImageContext.SectionAlignment - 1);
|
||||
ImageContext.ImageAddress &= ~((PHYSICAL_ADDRESS)ImageContext.SectionAlignment - 1);
|
||||
|
||||
//
|
||||
// Load the image to our new buffer
|
||||
|
@@ -4,7 +4,7 @@
|
||||
BugBug: Thunker does A20 gate. Can we get rid of this code or
|
||||
put it into Legacy16 code.
|
||||
|
||||
Copyright (c) 1999 - 2010, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 1999 - 2014, Intel Corporation. All rights reserved.<BR>
|
||||
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions
|
||||
@@ -67,7 +67,7 @@ BiosIntCall (
|
||||
UINT64 IntTypeVariable;
|
||||
|
||||
IntTypeVariable = 0x8000000000000000;
|
||||
IntTypeVariable |= BiosInt;
|
||||
IntTypeVariable |= (UINT64)BiosInt;
|
||||
|
||||
DwordRegs.Cs = Segment;
|
||||
DwordRegs.Eip = Offset;
|
||||
|
Reference in New Issue
Block a user