From abbe4e57f4bf753613535a85f3bd82067644bdae Mon Sep 17 00:00:00 2001 From: Star Zeng Date: Wed, 30 Sep 2015 04:39:34 +0000 Subject: [PATCH] Vlv2TbltDevicePkg FvbRuntimeDxe: Fix CalculateCheckSum16 input incorrect length The input length should be "The size, in bytes, of Buffer.", the divide sizeof (UINT16) operation is not needed and incorrect. Cc: David Wei Cc: Tim He Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Star Zeng Reviewed-by: David Wei git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@18563 6f19259b-4bc3-4df7-8a09-765794883524 --- Vlv2TbltDevicePkg/FvbRuntimeDxe/FvbInfo.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Vlv2TbltDevicePkg/FvbRuntimeDxe/FvbInfo.c b/Vlv2TbltDevicePkg/FvbRuntimeDxe/FvbInfo.c index 832e246d1c..ad039fb19b 100644 --- a/Vlv2TbltDevicePkg/FvbRuntimeDxe/FvbInfo.c +++ b/Vlv2TbltDevicePkg/FvbRuntimeDxe/FvbInfo.c @@ -2,7 +2,7 @@ Defines data structure that is the volume header found. These data is intent to decouple FVB driver with FV header. -Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.
+Copyright (c) 2006 - 2015, 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 that accompanies this distribution. @@ -156,7 +156,7 @@ GetFvbInfo ( // // Update the checksum value of FV header. // - FvHeader->Checksum = CalculateCheckSum16 ((UINT16 *) FvHeader, FvHeader->HeaderLength / sizeof (UINT16)); + FvHeader->Checksum = CalculateCheckSum16 ((UINT16 *) FvHeader, FvHeader->HeaderLength); *FvbInfo = FvHeader; -- 2.39.5