From 646690d296572fbc500090cb18da4fb172d4f044 Mon Sep 17 00:00:00 2001 From: Laszlo Ersek Date: Thu, 21 Jan 2016 18:40:26 +0000 Subject: ShellPkg: BcfgDisplayDump(): calculate OptionalDataOffset explicitly Eliminate some more repeated pointer arithmetic. This patch too is only refactoring. Cc: Jaben Carsey Cc: Ryan Harkin Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Laszlo Ersek Reviewed-by: Jaben Carsey git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@19714 6f19259b-4bc3-4df7-8a09-765794883524 (cherry picked from commit 5a5a659092ebc3936ecd18c3b78c6fc850d4af1c) --- .../Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'ShellPkg/Library/UefiShellBcfgCommandLib') diff --git a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c index d109ca29a7..ca7ecd1751 100644 --- a/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c +++ b/ShellPkg/Library/UefiShellBcfgCommandLib/UefiShellBcfgCommandLib.c @@ -1055,6 +1055,7 @@ BcfgDisplayDump( EFI_LOAD_OPTION *LoadOption; CHAR16 *Description; UINTN DescriptionSize; + UINTN OptionalDataOffset; if (OrderCount == 0) { ShellPrintHiiEx(-1, -1, NULL, STRING_TOKEN(STR_BCFG_NONE), gShellBcfgHiiHandle, L"bcfg"); @@ -1118,6 +1119,10 @@ BcfgDisplayDump( FilePathList = (UINT8 *)Description + DescriptionSize; DevPathString = ConvertDevicePathToText(FilePathList, TRUE, FALSE); } + + OptionalDataOffset = sizeof *LoadOption + DescriptionSize + + LoadOption->FilePathListLength; + ShellPrintHiiEx( -1, -1, @@ -1128,9 +1133,10 @@ BcfgDisplayDump( VariableName, Description, DevPathString, - (DescriptionSize + LoadOption->FilePathListLength + 6) <= BufferSize?L'N':L'Y'); + OptionalDataOffset <= BufferSize ? L'N' : L'Y' + ); if (VerboseOutput) { - for (LoopVar2 = (DescriptionSize + LoadOption->FilePathListLength + 6);LoopVar2