git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "René Scharfe" <rene.scharfe@lsrfire.ath.cx>
To: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
Cc: Junio C Hamano <gitster@pobox.com>,
	GIT Mailing-list <git@vger.kernel.org>
Subject: Re: [PATCH] builtin/blame.c: Fix a "Using plain integer as NULL pointer" warning
Date: Mon, 14 May 2012 01:39:41 +0200	[thread overview]
Message-ID: <4FB0463D.4010909@lsrfire.ath.cx> (raw)
In-Reply-To: <4FB02A7C.1000605@ramsay1.demon.co.uk>

Am 13.05.2012 23:41, schrieb Ramsay Jones:
>
>
> Signed-off-by: Ramsay Jones<ramsay@ramsay1.demon.co.uk>
> ---
>
> Hi Junio,
>
> I try to catch these warnings, while the topics are still in the
> pu branch, so that we can squash the fix into them before they
> hit next. I don't know how I missed this one (commit 4b4132f,
> "blame: factor out helper for calling xdi_diff()", 09-05-2012)
> which was part of the 'rs/xdiff-lose-emit-func' branch.
>
> Sorry about that.
>
> ATB,
> Ramsay Jones
>
>
>   builtin/blame.c |    2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/builtin/blame.c b/builtin/blame.c
> index 778d661..24d3dd5 100644
> --- a/builtin/blame.c
> +++ b/builtin/blame.c
> @@ -93,7 +93,7 @@ static int diff_hunks(mmfile_t *file_a, mmfile_t *file_b, long ctxlen,
>   {
>   	xpparam_t xpp = {0};
>   	xdemitconf_t xecfg = {0};
> -	xdemitcb_t ecb = {0};
> +	xdemitcb_t ecb = {NULL};
>
>   	xpp.flags = xdl_opts;
>   	xecfg.ctxlen = ctxlen;

The warning is given by sparse, not a C compiler, correct?  It's 
probably worth shutting it up by making that change; my excuse for using 
{0} is that it is such a nice and portable idiom [1] for initializing 
any structure, however.

René


[1] http://www.ex-parrot.com/~chris/random/initialise.html

  reply	other threads:[~2012-05-13 23:39 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-13 21:41 [PATCH] builtin/blame.c: Fix a "Using plain integer as NULL pointer" warning Ramsay Jones
2012-05-13 23:39 ` René Scharfe [this message]
2012-05-15 17:33   ` Ramsay Jones

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=4FB0463D.4010909@lsrfire.ath.cx \
    --to=rene.scharfe@lsrfire.ath.cx \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=ramsay@ramsay1.demon.co.uk \
    /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).