X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=blobdiff_plain;f=MdeModulePkg%2FUniversal%2FAcpi%2FAcpiTableDxe%2FAml.c;h=30f71bdda45c25f2f264251cdb4f1d0208a76a67;hp=a7b53e27bd2e33a6254cd98d22617bf82d34b9bb;hb=6e1e5405544724406f07344a5911298c3df44129;hpb=e935092fa7e1401201e6faadb04b0ae239dd97a5 diff --git a/MdeModulePkg/Universal/Acpi/AcpiTableDxe/Aml.c b/MdeModulePkg/Universal/Acpi/AcpiTableDxe/Aml.c index a7b53e27bd..30f71bdda4 100644 --- a/MdeModulePkg/Universal/Acpi/AcpiTableDxe/Aml.c +++ b/MdeModulePkg/Universal/Acpi/AcpiTableDxe/Aml.c @@ -1,7 +1,7 @@ /** @file ACPI Sdt Protocol Driver - Copyright (c) 2010 - 2012, Intel Corporation. All rights reserved.
+ Copyright (c) 2010 - 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 @@ -282,13 +282,13 @@ AmlGetPkgLength ( break; case 2: RealLength = *(Buffer + 1); - RealLength |= (*(Buffer + 2)) << 8; + RealLength |= (UINTN)((*(Buffer + 2)) << 8); RealLength = (RealLength << 4) | (LeadByte & 0xF); break; case 3: RealLength = *(Buffer + 1); - RealLength |= (*(Buffer + 2)) << 8; - RealLength |= (*(Buffer + 3)) << 16; + RealLength |= (UINTN)((*(Buffer + 2)) << 8); + RealLength |= (UINTN)((*(Buffer + 3)) << 16); RealLength = (RealLength << 4) | (LeadByte & 0xF); break; default: