From: Jan Kratochvil <jan.kratochvil@redhat.com>
To: Joel Brobecker <brobecker@adacore.com>
Cc: gdb-patches@sourceware.org, Matt Rice <ratmice@gmail.com>,
Pedro Alves <palves@redhat.com>
Subject: Re: [doc patch] coding style: 0 vs. NULL + [patch] Code cleanup: skip.c
Date: Tue, 11 Dec 2012 06:07:00 -0000 [thread overview]
Message-ID: <20121211060641.GA7775@host2.jankratochvil.net> (raw)
In-Reply-To: <20121211015343.GM31477@adacore.com>
On Tue, 11 Dec 2012 02:53:43 +0100, Joel Brobecker wrote:
> > But GDB (IMO fortunately) already uses everywhere properly NULL vs. 0.
> [...]
> > I have added a new rule for the coding style for it.
>
> So, just to be certain, this also includes testing for NULL, right?
I did not think about this case.
> Code like...
>
> first = strstr (big, small);
> if (first)
>
> ... should be written instead:
>
> if (first != NULL)
I find '(first)' OK myself but IIRC Pedro recently in some mail wrote he likes
more an explicit NULL comparison there. Although I cannot find his mail now
so I hope I do not put these words in Pedro's mouth.
From my point of view:
OK if (first)
not great if (!first)
OK if (first == NULL)
OK if (first != NULL)
BAD if (first == 0)
BAD if (first != 0)
There can be probably just disagreements about the first two cases, whether
they should be forbidden or not, I do not mind.
Thanks,
Jan
next prev parent reply other threads:[~2012-12-11 6:07 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-12-10 18:42 Jan Kratochvil
2012-12-11 1:54 ` Joel Brobecker
2012-12-11 6:07 ` Jan Kratochvil [this message]
2012-12-11 6:51 ` Jan Kratochvil
2012-12-11 10:22 ` Pedro Alves
2012-12-11 12:01 ` Joel Brobecker
2012-12-11 20:22 ` [doc patchv2] " Jan Kratochvil
2012-12-11 20:39 ` Eli Zaretskii
2012-12-11 20:43 ` Jan Kratochvil
2012-12-12 4:29 ` Joel Brobecker
2012-12-16 19:00 ` [commit] " Jan Kratochvil
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=20121211060641.GA7775@host2.jankratochvil.net \
--to=jan.kratochvil@redhat.com \
--cc=brobecker@adacore.com \
--cc=gdb-patches@sourceware.org \
--cc=palves@redhat.com \
--cc=ratmice@gmail.com \
/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