git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* NULL dereference in ab/wildmatch
@ 2017-06-25 14:09 Jeff King
  2017-06-25 14:20 ` Ævar Arnfjörð Bjarmason
  0 siblings, 1 reply; 2+ messages in thread
From: Jeff King @ 2017-06-25 14:09 UTC (permalink / raw)
  To: Ævar Arnfjörð Bjarmason; +Cc: git

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.

-Peff

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-25 14:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-25 14:09 NULL dereference in ab/wildmatch Jeff King
2017-06-25 14:20 ` Ævar Arnfjörð Bjarmason

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).