Re: [PATCH 12/16] efi_loader: optional pointer for ConvertPointer

2020-03-31 Thread AKASHI Takahiro
On Tue, Mar 31, 2020 at 08:52:23AM +0200, Heinrich Schuchardt wrote: > On March 31, 2020, 5:23 a.m. UTC Takahiro Akashi wrote > >On Fri, Mar 27, 2020 at 06:27:56AM +0100, Heinrich Schuchardt wrote: > >> If the EFI_OPTIONAL_PTR is set in DebugDisposition, a NULL pointer > does not > >> constitute an

Re: [PATCH 12/16] efi_loader: optional pointer for ConvertPointer

2020-03-30 Thread Heinrich Schuchardt
On March 31, 2020, 5:23 a.m. UTC Takahiro Akashi wrote >On Fri, Mar 27, 2020 at 06:27:56AM +0100, Heinrich Schuchardt wrote: >> If the EFI_OPTIONAL_PTR is set in DebugDisposition, a NULL pointer does not >> constitute an invalid parameter. >> >> Signed-off-by: Heinrich Schuchardt >> --- >> inclu

Re: [PATCH 12/16] efi_loader: optional pointer for ConvertPointer

2020-03-30 Thread AKASHI Takahiro
On Fri, Mar 27, 2020 at 06:27:56AM +0100, Heinrich Schuchardt wrote: > If the EFI_OPTIONAL_PTR is set in DebugDisposition, a NULL pointer does not > constitute an invalid parameter. > > Signed-off-by: Heinrich Schuchardt > --- > include/efi_api.h| 2 ++ > lib/efi_loader/efi_runtime.c

[PATCH 12/16] efi_loader: optional pointer for ConvertPointer

2020-03-26 Thread Heinrich Schuchardt
If the EFI_OPTIONAL_PTR is set in DebugDisposition, a NULL pointer does not constitute an invalid parameter. Signed-off-by: Heinrich Schuchardt --- include/efi_api.h| 2 ++ lib/efi_loader/efi_runtime.c | 6 ++ 2 files changed, 8 insertions(+) diff --git a/include/efi_api.h b/inc