Recent discussion has made it clear that there is no community consensus on
this particular rule. Remove it now, lest it inspire yet another set of
unwanted "cleanup" patches.
This partially reverts
865a1caa4b6b (CodingStyle: Clarify and complete
chapter 7).
Cc: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
renumber them if you ever add or remove exit paths, and they make correctness
difficult to verify anyway.
-It is advised to indent labels with a single space (not tab), so that
-``diff -p`` does not confuse labels with functions.
-
The rationale for using gotos is:
- unconditional statements are easier to understand and follow
goto out_buffer;
}
...
- out_free_buffer:
+ out_free_buffer:
kfree(buffer);
return result;
}
.. code-block:: c
- err:
+ err:
kfree(foo->bar);
kfree(foo);
return ret;