grub-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/5] multiboot2: Fix information request tag size calculation


From: Andrei Borzenkov
Subject: Re: [PATCH 1/5] multiboot2: Fix information request tag size calculation
Date: Sat, 14 Feb 2015 19:27:49 +0300

В Fri, 30 Jan 2015 18:59:24 +0100
Daniel Kiper <address@hidden> пишет:

> Signed-off-by: Daniel Kiper <address@hidden>
> ---
>  grub-core/loader/multiboot_mbi2.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/grub-core/loader/multiboot_mbi2.c 
> b/grub-core/loader/multiboot_mbi2.c
> index 6f74aee..d7c19bc 100644
> --- a/grub-core/loader/multiboot_mbi2.c
> +++ b/grub-core/loader/multiboot_mbi2.c
> @@ -150,7 +150,7 @@ grub_multiboot_load (grub_file_t file, const char 
> *filename)
>           = (struct multiboot_header_tag_information_request *) tag;
>         if (request_tag->flags & MULTIBOOT_HEADER_TAG_OPTIONAL)
>           break;
> -       for (i = 0; i < (request_tag->size - sizeof (request_tag))
> +       for (i = 0; i < (request_tag->size - sizeof (*request_tag))
>                / sizeof (request_tag->requests[0]); i++)
>           switch (request_tag->requests[i])
>             {

Applied. Thanks!



reply via email to

[Prev in Thread] Current Thread [Next in Thread]