From: Vladimir Serbinenko Date: Mon, 7 Apr 2025 19:05:40 +0000 (+0300) Subject: loader/ia64/efi/linux: Reset grub_errno on failure to allocate X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=223fcf808424227b85969972931d7da3cd71fe9a;p=thirdparty%2Fgrub.git loader/ia64/efi/linux: Reset grub_errno on failure to allocate The code goes on to allocate memory in another region on failure, hence it should discard the error. Signed-off-by: Vladimir Serbinenko Reviewed-by: Daniel Kiper --- diff --git a/grub-core/loader/ia64/efi/linux.c b/grub-core/loader/ia64/efi/linux.c index 3dd2e8236..99cb244d8 100644 --- a/grub-core/loader/ia64/efi/linux.c +++ b/grub-core/loader/ia64/efi/linux.c @@ -383,6 +383,7 @@ grub_load_elf64 (grub_file_t file, void *buffer, const char *filename) { kernel_mem = grub_efi_allocate_fixed (low_addr, kernel_pages); reloc_offset = 0; + grub_errno = GRUB_ERR_NONE; } /* Try to relocate. */ if (! kernel_mem && (!relocate || grub_strcmp (relocate, "off") != 0))