diff options
author | Eric Dong <eric.dong@intel.com> | 2014-06-26 03:16:27 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-06-26 03:16:27 +0000 |
commit | b5f8b5b03dde02d13cedc87d42bccd5c822e2801 (patch) | |
tree | e5051300e5d979395baeca70c4f32b5bfb12e5ec /EdkCompatibilityPkg/Foundation/Library/Pei | |
parent | 5a18908695b8fb1a0ce325bd29b43d51aa65e07f (diff) | |
download | edk2-platforms-b5f8b5b03dde02d13cedc87d42bccd5c822e2801.tar.xz |
Refine code to make it more safely.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Eric Dong <eric.dong@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@15595 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EdkCompatibilityPkg/Foundation/Library/Pei')
-rw-r--r-- | EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/Print.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/Print.c b/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/Print.c index b854cbe34e..55c0a043d4 100644 --- a/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/Print.c +++ b/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/Print/Print.c @@ -1,6 +1,6 @@ /*++
-Copyright (c) 2004, Intel Corporation. All rights reserved.<BR>
+Copyright (c) 2004 - 2014, Intel Corporation. All rights reserved.<BR>
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
@@ -527,6 +527,7 @@ Returns: BufferPtr = Buffer;
Count = 0;
NumberCount = 0;
+ Remainder = 0;
if (Value < 0) {
Negative = TRUE;
|