From 490173cecf92b9abfb9f3c386759699642ea2300 Mon Sep 17 00:00:00 2001 From: ydong10 Date: Fri, 4 May 2012 05:59:26 +0000 Subject: Correct an error in Aprint function. Signed-off-by: Eric Dong Reviewed-by: Liming Gao git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@13274 6f19259b-4bc3-4df7-8a09-765794883524 --- EdkCompatibilityPkg/Foundation/Library/Dxe/Print/StdErr.c | 4 ++-- EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'EdkCompatibilityPkg') diff --git a/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/StdErr.c b/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/StdErr.c index 9d110b7c16..e48cbe834d 100644 --- a/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/StdErr.c +++ b/EdkCompatibilityPkg/Foundation/Library/Dxe/Print/StdErr.c @@ -1,6 +1,6 @@ /*++ -Copyright (c) 2004, Intel Corporation. All rights reserved.
+Copyright (c) 2004 - 2012, 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 @@ -176,7 +176,7 @@ Returns: return 0; } - for (Index = 0; Index < EFI_DRIVER_LIB_MAX_PRINT_BUFFER; Index++) { + for (Index = 0; Index <= MaxIndex; Index++) { UnicodeFormat[Index] = (CHAR16) Format[Index]; } diff --git a/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c b/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c index 9d110b7c16..e48cbe834d 100644 --- a/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c +++ b/EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c @@ -1,6 +1,6 @@ /*++ -Copyright (c) 2004, Intel Corporation. All rights reserved.
+Copyright (c) 2004 - 2012, 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 @@ -176,7 +176,7 @@ Returns: return 0; } - for (Index = 0; Index < EFI_DRIVER_LIB_MAX_PRINT_BUFFER; Index++) { + for (Index = 0; Index <= MaxIndex; Index++) { UnicodeFormat[Index] = (CHAR16) Format[Index]; } -- cgit v1.2.3