From: Ramsay Jones <ramsay@ramsay1.demon.co.uk>
To: "René Scharfe" <rene.scharfe@lsrfire.ath.cx>
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: Tue, 15 May 2012 18:33:12 +0100 [thread overview]
Message-ID: <4FB29358.90408@ramsay1.demon.co.uk> (raw)
In-Reply-To: <4FB0463D.4010909@lsrfire.ath.cx>
René Scharfe wrote:
> 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.
Yes, sorry, it is indeed a sparse warning. (The original
subject line mentioned sparse, but it was too long ... ;-)
Thanks!
ATB,
Ramsay Jones
prev parent reply other threads:[~2012-05-15 17:33 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
2012-05-15 17:33 ` Ramsay Jones [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=4FB29358.90408@ramsay1.demon.co.uk \
--to=ramsay@ramsay1.demon.co.uk \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=rene.scharfe@lsrfire.ath.cx \
/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).