]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Correct an error in Aprint function.
authorydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 4 May 2012 05:59:26 +0000 (05:59 +0000)
committerydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524>
Fri, 4 May 2012 05:59:26 +0000 (05:59 +0000)
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
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
EdkCompatibilityPkg/Foundation/Library/Dxe/PrintLite/StdErr.c

index 9d110b7c16ebd6c1b92d2fc2bccac13461b9bb77..e48cbe834d3d75621f4c087bc6c337bc99cb9711 100644 (file)
@@ -1,6 +1,6 @@
 /*++\r
 \r
-Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -176,7 +176,7 @@ Returns:
     return 0;\r
   }\r
 \r
-  for (Index = 0; Index < EFI_DRIVER_LIB_MAX_PRINT_BUFFER; Index++) {\r
+  for (Index = 0; Index <= MaxIndex; Index++) {\r
     UnicodeFormat[Index] = (CHAR16) Format[Index];\r
   }\r
 \r
index 9d110b7c16ebd6c1b92d2fc2bccac13461b9bb77..e48cbe834d3d75621f4c087bc6c337bc99cb9711 100644 (file)
@@ -1,6 +1,6 @@
 /*++\r
 \r
-Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>\r
+Copyright (c) 2004 - 2012, Intel Corporation. All rights reserved.<BR>\r
 This program and the accompanying materials                          \r
 are licensed and made available under the terms and conditions of the BSD License         \r
 which accompanies this distribution.  The full text of the license may be found at        \r
@@ -176,7 +176,7 @@ Returns:
     return 0;\r
   }\r
 \r
-  for (Index = 0; Index < EFI_DRIVER_LIB_MAX_PRINT_BUFFER; Index++) {\r
+  for (Index = 0; Index <= MaxIndex; Index++) {\r
     UnicodeFormat[Index] = (CHAR16) Format[Index];\r
   }\r
 \r