Merge branch 'jc/codingstyle-compare-with-null'

Doc update.

* jc/codingstyle-compare-with-null:
  CodingGuidelines: do not ==/!= compare with 0 or '\0' or NULL
maint
Junio C Hamano 2020-05-14 14:39:42 -07:00
commit 73d9f96b47
1 changed files with 12 additions and 0 deletions

View File

@ -232,6 +232,18 @@ For C programs:
while( condition )
func (bar+1);

- Do not explicitly compare an integral value with constant 0 or '\0',
or a pointer value with constant NULL. For instance, to validate that
counted array <ptr, cnt> is initialized but has no elements, write:

if (!ptr || cnt)
BUG("empty array expected");

and not:

if (ptr == NULL || cnt != 0);
BUG("empty array expected");

- We avoid using braces unnecessarily. I.e.

if (bla) {