mirror of
https://git.proxmox.com/git/mirror_edk2
synced 2025-10-06 08:57:33 +00:00
![]() The UefiShell*CommandsLib instances have constructor functions that do something like: gHiiHandle = HiiAddPackages (...); ... ShellCommandRegisterCommandName (..., gHiiHandle, ...); and destructor functions that implement the following pattern: HiiRemovePackages (gHiiHandle); The -- semantic, not functional -- problem is that "gHiiHandle" is declared with type EFI_HANDLE, and not EFI_HII_HANDLE, in all of these library instances, even though HiiAddPackages() correctly returns EFI_HII_HANDLE, and HiiRemovePackages() takes EFI_HII_HANDLE. Once we fix the type of "gHiiHandle", it causes sort of a butterfly effect, because it is passed around widely. Track down and update all of those locations. The DynamicCommand lib instances use a similar pattern, so they are affected too. NOTE: in practice, this patch is a no-op, as both EFI_HII_HANDLE and EFI_HANDLE are typedefs to (VOID*). However, we shouldn't use EFI_HANDLE where semantically EFI_HII_HANDLE is passed around. Cc: Jaben Carsey <jaben.carsey@intel.com> Cc: Ray Ni <ray.ni@intel.com> Cc: Zhichao Gao <zhichao.gao@intel.com> Signed-off-by: Laszlo Ersek <lersek@redhat.com> Reviewed-by: Philippe Mathieu-Daude <philmd@redhat.com> Reviewed-by: Zhichao Gao <zhichao.gao@intel.com> |
||
---|---|---|
.. | ||
Edit | ||
HexEdit | ||
SmbiosView | ||
Comp.c | ||
Compress.c | ||
Compress.h | ||
Dblk.c | ||
Dmem.c | ||
DmpStore.c | ||
EditInputBar.c | ||
EditInputBar.h | ||
EditMenuBar.c | ||
EditMenuBar.h | ||
EditStatusBar.c | ||
EditStatusBar.h | ||
EditTitleBar.c | ||
EditTitleBar.h | ||
EfiCompress.c | ||
EfiDecompress.c | ||
LoadPciRom.c | ||
MemMap.c | ||
Mm.c | ||
Mode.c | ||
Pci.c | ||
Pci.h | ||
SerMode.c | ||
SetSize.c | ||
SetVar.c | ||
UefiShellDebug1CommandsLib.c | ||
UefiShellDebug1CommandsLib.h | ||
UefiShellDebug1CommandsLib.inf | ||
UefiShellDebug1CommandsLib.uni |