From: Robert Millan <rmh@aybabtu.com>
To: Felix Zielcke <fzielcke@z-51.de>
Cc: grub-devel@gnu.org
Subject: Re: [2338] 2009-06-17 Felix Zielcke <fzielcke@z-51.de>
Date: Sat, 20 Jun 2009 15:43:51 +0200 [thread overview]
Message-ID: <20090620134351.GA22660@thorin> (raw)
In-Reply-To: <E1MGynD-0005z5-PM@cvs.savannah.gnu.org>
Hi Felix,
This commit looks wrong. grub_file_open is already supposed to set
grub_errno and grub_errmsg appropiately.
Is there a specific problem you wanted to fix here?
On Wed, Jun 17, 2009 at 05:19:23PM +0000, Felix Zielcke wrote:
> Revision: 2338
> http://svn.sv.gnu.org/viewvc/?view=rev&root=grub&revision=2338
> Author: fzielcke
> Date: 2009-06-17 17:19:23 +0000 (Wed, 17 Jun 2009)
> Log Message:
> -----------
> 2009-06-17 Felix Zielcke <fzielcke@z-51.de>
>
> * loader/i386/linux.c (grub_cmd_linux): Set grub_error if the
> file can't be found.
> * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
>
> Modified Paths:
> --------------
> trunk/grub2/ChangeLog
> trunk/grub2/loader/i386/linux.c
> trunk/grub2/loader/i386/pc/linux.c
>
> Modified: trunk/grub2/ChangeLog
> ===================================================================
> --- trunk/grub2/ChangeLog 2009-06-17 13:47:37 UTC (rev 2337)
> +++ trunk/grub2/ChangeLog 2009-06-17 17:19:23 UTC (rev 2338)
> @@ -1,3 +1,9 @@
> +2009-06-17 Felix Zielcke <fzielcke@z-51.de>
> +
> + * loader/i386/linux.c (grub_cmd_linux): Set grub_error if the
> + file can't be found.
> + * loader/i386/pc/linux.c (grub_cmd_linux): Likewise.
> +
> 2009-06-17 Vladimir Serbinenko <phcoder@gmail.com>
>
> Fix newline handling
>
> Modified: trunk/grub2/loader/i386/linux.c
> ===================================================================
> --- trunk/grub2/loader/i386/linux.c 2009-06-17 13:47:37 UTC (rev 2337)
> +++ trunk/grub2/loader/i386/linux.c 2009-06-17 17:19:23 UTC (rev 2338)
> @@ -600,7 +600,10 @@
>
> file = grub_file_open (argv[0]);
> if (! file)
> - goto fail;
> + {
> + grub_error (GRUB_ERR_FILE_NOT_FOUND, "file not found");
> + goto fail;
> + }
>
> if (grub_file_read (file, &lh, sizeof (lh)) != sizeof (lh))
> {
>
> Modified: trunk/grub2/loader/i386/pc/linux.c
> ===================================================================
> --- trunk/grub2/loader/i386/pc/linux.c 2009-06-17 13:47:37 UTC (rev 2337)
> +++ trunk/grub2/loader/i386/pc/linux.c 2009-06-17 17:19:23 UTC (rev 2338)
> @@ -69,7 +69,10 @@
>
> file = grub_file_open (argv[0]);
> if (! file)
> - goto fail;
> + {
> + grub_error (GRUB_ERR_FILE_NOT_FOUND, "file not found");
> + goto fail;
> + }
>
> if ((grub_size_t) grub_file_size (file) > grub_os_area_size)
> {
>
>
>
>
--
Robert Millan
The DRM opt-in fallacy: "Your data belongs to us. We will decide when (and
how) you may access your data; but nobody's threatening your freedom: we
still allow you to remove your data and not access it at all."
next parent reply other threads:[~2009-06-20 13:44 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <E1MGynD-0005z5-PM@cvs.savannah.gnu.org>
2009-06-20 13:43 ` Robert Millan [this message]
2009-06-27 12:22 ` [2338] 2009-06-17 Felix Zielcke <fzielcke@z-51.de> Robert Millan
2009-06-28 10:23 ` Felix Zielcke
2009-06-28 11:44 ` Robert Millan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20090620134351.GA22660@thorin \
--to=rmh@aybabtu.com \
--cc=fzielcke@z-51.de \
--cc=grub-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.