diff options
author | Eric Dong <eric.dong@intel.com> | 2014-06-26 03:17:59 +0000 |
---|---|---|
committer | ydong10 <ydong10@6f19259b-4bc3-4df7-8a09-765794883524> | 2014-06-26 03:17:59 +0000 |
commit | 6afd9f45bb4b72ef3952d1b01e9dee909f414b5e (patch) | |
tree | 1419426700a608f39d7765b8462414bf719045e9 /MdePkg | |
parent | b5f8b5b03dde02d13cedc87d42bccd5c822e2801 (diff) | |
download | edk2-platforms-6afd9f45bb4b72ef3952d1b01e9dee909f414b5e.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@15596 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r-- | MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c b/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c index 15c3325cd4..e59a9de3d1 100644 --- a/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c +++ b/MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.c @@ -1,7 +1,7 @@ /** @file
UEFI Decompress Library implementation refer to UEFI specification.
- Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2006 - 2014, Intel Corporation. All rights reserved.<BR>
Portions copyright (c) 2008 - 2009, Apple Inc. All rights reserved.<BR>
This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
@@ -333,6 +333,7 @@ ReadPTLen ( UINT16 Index;
UINT32 Mask;
+ ASSERT (nn <= NPT);
//
// Read Extra Set Code Length Array size
//
|