diff options
author | Qiu Shumin <shumin.qiu@intel.com> | 2016-01-26 08:17:19 +0000 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-07-13 20:41:49 +0800 |
commit | 5d39fef92a28953c7abfe61398401a9d0823e80b (patch) | |
tree | 75082f66f22de870dcc2e9d1b6263e38420c814f /ShellPkg/Library | |
parent | f6839e1c399c72b39820d79d2b44fa407a5e2b22 (diff) | |
download | edk2-platforms-5d39fef92a28953c7abfe61398401a9d0823e80b.tar.xz |
ShellPkg: Refine the code to avoid use a constant number as offset.
Refine the code to use 'sizeof(EFI_LOAD_OPTION)' as offset in buffer to get 'description' instead of using a constant number.
This change makes the code more readable.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Qiu Shumin <shumin.qiu@intel.com>
Reviewed-by: Jaben Carsey <jaben.carsey@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19746 6f19259b-4bc3-4df7-8a09-765794883524
(cherry picked from commit aed8c66dac8731e8175cdeaff78e24c1ff728b90)
Diffstat (limited to 'ShellPkg/Library')
-rw-r--r-- | ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c index 6a078d81cc..b407608d31 100644 --- a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c +++ b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c @@ -1111,7 +1111,7 @@ BcfgDisplayDump( }
LoadOption = (EFI_LOAD_OPTION *)Buffer;
- Description = (CHAR16 *)(&LoadOption->FilePathListLength + 1);
+ Description = (CHAR16*)(Buffer + sizeof (EFI_LOAD_OPTION));
DescriptionSize = StrSize (Description);
if (LoadOption->FilePathListLength != 0) {
|