From: "Ævar Arnfjörð Bjarmason" <avarab@gmail.com>
To: Jeff King <peff@peff.net>
Cc: Git Mailing List <git@vger.kernel.org>,
Junio C Hamano <gitster@pobox.com>
Subject: Re: NULL dereference in ab/wildmatch
Date: Sun, 25 Jun 2017 16:20:31 +0200 [thread overview]
Message-ID: <CACBZZX59LvCsp-rf4DatJahwgsY0cki=6E6keMiUgxK0v0KTSQ@mail.gmail.com> (raw)
In-Reply-To: <20170625140957.kjkctkaesm6il5u2@sigill.intra.peff.net>
On Sun, Jun 25, 2017 at 4:09 PM, Jeff King <peff@peff.net> wrote:
> On Sun, Jun 25, 2017 at 02:50:10AM -0700, scan-admin@coverity.com wrote:
>
>>
>> ** CID 1413016: Null pointer dereferences (FORWARD_NULL)
>> /config.c: 213 in include_by_gitdir()
>>
>>
>> ________________________________________________________________________________________________________
>> *** CID 1413016: Null pointer dereferences (FORWARD_NULL)
>> /config.c: 213 in include_by_gitdir()
>> 207 {
>> 208 struct strbuf text = STRBUF_INIT;
>> 209 struct strbuf pattern = STRBUF_INIT;
>> 210 int ret = 0, prefix;
>> 211 const char *git_dir;
>> 212 int already_tried_absolute = 0;
>> >>> CID 1413016: Null pointer dereferences (FORWARD_NULL)
>> >>> Assigning: "code" = "NULL".
>> 213 struct wildmatch_compiled *code = NULL;
>> 214
>> 215 if (opts->git_dir)
>> 216 git_dir = opts->git_dir;
>> 217 else
>> 218 goto done;
>
> I think this comes the "goto done" at the bottom of the context. After
> that label, we call wildmatch_free() unconditionally. Probably it just
> needs:
>
> diff --git a/config.c b/config.c
> index 515f8518e2..cfee92ebbf 100644
> --- a/config.c
> +++ b/config.c
> @@ -260,7 +260,8 @@ static int include_by_gitdir(const struct config_options *opts,
> done:
> strbuf_release(&pattern);
> strbuf_release(&text);
> - wildmatch_free(code);
> + if (code)
> + wildmatch_free(code);
> return ret;
> }
>
>
> though arguably wildmatch_free() should be taught to handle NULL.
Thanks. I'll fix this one way or the other in a future submission;
Junio: Could you please eject the RFC patches in the series (i.e. 2/3
& 3/3), i.e. just keep "wildmatch: remove unused wildopts parameter".
I'm slowly refactoring / fixing bugs / adding tests for wildmatch() &
handling the dir.c / tree-walk.c cases. I'll submit that later after
the current obviously-correct "unused parameter" fix has cooked for a
bit.
prev parent reply other threads:[~2017-06-25 14:20 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-25 14:09 NULL dereference in ab/wildmatch Jeff King
2017-06-25 14:20 ` Ævar Arnfjörð Bjarmason [this message]
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='CACBZZX59LvCsp-rf4DatJahwgsY0cki=6E6keMiUgxK0v0KTSQ@mail.gmail.com' \
--to=avarab@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=peff@peff.net \
/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).