mirror of https://github.com/acidanthera/audk.git
MdeModulePkg/HiiDatabaseDxe: ASSERT "Private->Attribute >> 4"
Foreground and background color are saved in a single byte. Bits 0..3 are the foreground color and bits 4..6 are the background color. If the Private->Attribute defined correctly, (Private->Attribute >> 4) must be less than 8. This commit uses ASSERT to assume "Attribute >> 4" is less than 8. Cc: Dandan Bi <dandan.bi@intel.com> Cc: Eric Dong <eric.dong@intel.com> Signed-off-by: Shenglei Zhang <shenglei.zhang@intel.com> Reviewed-by: Dandan Bi <dandan.bi@intel.com>
This commit is contained in:
parent
121955fd4f
commit
df50c2fcd8
|
@ -999,6 +999,7 @@ GetSystemFont (
|
|||
}
|
||||
|
||||
Info->ForegroundColor = mHiiEfiColors[Private->Attribute & 0x0f];
|
||||
ASSERT ((Private->Attribute >> 4) < 8);
|
||||
Info->BackgroundColor = mHiiEfiColors[Private->Attribute >> 4];
|
||||
Info->FontInfoMask = EFI_FONT_INFO_SYS_FONT | EFI_FONT_INFO_SYS_SIZE | EFI_FONT_INFO_SYS_STYLE;
|
||||
Info->FontInfo.FontStyle = 0;
|
||||
|
|
Loading…
Reference in New Issue