From: Eric Sunshine <sunshine@sunshineco.com>
To: Patrick Steinhardt <ps@pks.im>
Cc: Git List <git@vger.kernel.org>
Subject: Re: [PATCH] grep: correctly initialize help-all option
Date: Thu, 9 Apr 2015 15:45:29 -0400 [thread overview]
Message-ID: <CAPig+cQQVO0RqZrAkLxS3v-iPf4LFsDOVz_fPDhofvLvs7tFyA@mail.gmail.com> (raw)
In-Reply-To: <1428586916-22679-1-git-send-email-ps@pks.im>
On Thu, Apr 9, 2015 at 9:41 AM, Patrick Steinhardt <ps@pks.im> wrote:
> The "help-all" option is being initialized with a wrong value.
> While being semantically wrong this can also cause a gcc
> segmentation fault on ARMv7 hardfloat platforms with a hardened
> toolchain. Fix this by initializing with the correct value.
Missing sign-off.
> ---
> diff --git a/builtin/grep.c b/builtin/grep.c
> index abc4400..c0bf005 100644
> --- a/builtin/grep.c
> +++ b/builtin/grep.c
> @@ -738,7 +738,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
> PARSE_OPT_OPTARG, NULL, (intptr_t)default_pager },
> OPT_BOOL(0, "ext-grep", &external_grep_allowed__ignored,
> N_("allow calling of grep(1) (ignored by this build)")),
> - { OPTION_CALLBACK, 0, "help-all", &options, NULL, N_("show usage"),
> + { OPTION_CALLBACK, 0, "help-all", &opt, NULL, N_("show usage"),
This dates back to 3e230fa1 (grep: use parseopt; 2009-05-07).
builtin/show-ref.c just passes NULL for that argument in the same situation.
> PARSE_OPT_HIDDEN | PARSE_OPT_NOARG, help_callback },
> OPT_END()
> };
> --
> 2.3.5
next prev parent reply other threads:[~2015-04-09 19:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-09 13:41 [PATCH] grep: correctly initialize help-all option Patrick Steinhardt
2015-04-09 19:45 ` Eric Sunshine [this message]
2015-04-09 19:59 ` [PATCH v2] " Patrick Steinhardt
2015-04-10 16:35 ` René Scharfe
2015-04-09 21:55 ` [PATCH] " René Scharfe
2015-04-10 5:22 ` Patrick Steinhardt
2015-04-10 16:34 ` René Scharfe
2015-04-11 0:34 ` Patrick Steinhardt
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=CAPig+cQQVO0RqZrAkLxS3v-iPf4LFsDOVz_fPDhofvLvs7tFyA@mail.gmail.com \
--to=sunshine@sunshineco.com \
--cc=git@vger.kernel.org \
--cc=ps@pks.im \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).