From: Robert Millan <rmh@aybabtu.com>
To: The development of GRUB 2 <grub-devel@gnu.org>
Subject: Re: [PATCH] Add option to grub-probe to accept system devices as arguments
Date: Mon, 11 Feb 2008 17:12:30 +0100 [thread overview]
Message-ID: <20080211161230.GA7585@thorin> (raw)
In-Reply-To: <47B06E4A.9070801@leat.rub.de>
On Mon, Feb 11, 2008 at 04:48:26PM +0100, Fabian Greffrath wrote:
> >Is there really a need to strdup() it?
>
> Yep. If you return the pointer (i.e. to `path') you'll get memory
> corruption as soon as you try to free (device_name).
You put that function in a separate file, which indicates it is meant to be
a general-purpose function, but its spec is constrained by the code in
grub-probe (i.e. you strdup() not because it is needed for the purpose of
this function, but because grub-probe already calls free()).
In case of a general-purpose function, it doesn't make much sense to strdup
it. Consider what would a caller have to do in case it wasn't using free()
already:
ret = check (device);
if (! ret)
fatal ("%s is bad", device);
free (ret);
instead of just:
if (! check (device))
fatal ("%s is bad", device);
> >I find it confusing that you change the meaning of the `path' variable
> >without
> >renaming it. Also, the variable that describes what `path' is
> >(argument_is_device) is passed separately.
>
> Allright. Maybe the `path' variable should be renamed to `argument'.
That works too ... but please put them together (i.e. both as arguments to
probe()).
> >I suspect advertising it here might lead users to think they can pass a
> >device
> >to it, without caring about [...] this option.
>
> Allright, this should be changed to something like this:
> "Probe device information for a given path (or device, if the -d option is
> given)."
Ok.
--
Robert Millan
<GPLv2> I know my rights; I want my phone call!
<DRM> What use is a phone call… if you are unable to speak?
(as seen on /.)
next prev parent reply other threads:[~2008-02-11 16:14 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-02-11 15:48 [PATCH] Add option to grub-probe to accept system devices as arguments Fabian Greffrath
2008-02-11 16:12 ` Robert Millan [this message]
-- strict thread matches above, loose matches on Subject: below --
2008-02-12 13:17 Fabian Greffrath
2008-02-13 13:03 ` Fabian Greffrath
2008-02-13 15:42 ` Robert Millan
2008-02-13 16:51 ` Fabian Greffrath
2008-02-13 19:35 ` Robert Millan
2008-02-14 8:33 ` Fabian Greffrath
2008-02-17 13:42 ` Robert Millan
2008-02-18 12:54 ` Fabian Greffrath
2008-02-20 14:14 ` Fabian Greffrath
2008-02-12 9:49 Fabian Greffrath
2008-02-12 11:28 ` Robert Millan
2008-02-11 8:53 Fabian Greffrath
2008-02-11 14:39 ` 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=20080211161230.GA7585@thorin \
--to=rmh@aybabtu.com \
--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.