* [Qemu-devel] Re: [COMMIT 26d64a8] Format per CODING_STYLE
[not found] <200905191830.n4JIUCMB019417@d03av04.boulder.ibm.com>
@ 2009-05-20 7:44 ` Kevin Wolf
0 siblings, 0 replies; only message in thread
From: Kevin Wolf @ 2009-05-20 7:44 UTC (permalink / raw)
To: qemu-devel@nongnu.org
Anthony Liguori schrieb:
> From: malc <av1474@comtv.ru>
>
> Signed-off-by: malc <av1474@comtv.ru>
Is it really necessary to have commits that change nothing but style? We
could have hundreds of commits just converting all the code to the new
coding style, but in the end all you achieve is to clutter up the log
and make git blame meaningless.
I would really prefer to apply the new coding style only to new or
(semantically) changed code.
Kevin
>
> diff --git a/qemu-malloc.c b/qemu-malloc.c
> index 5e9f47f..295d185 100644
> --- a/qemu-malloc.c
> +++ b/qemu-malloc.c
> @@ -26,8 +26,9 @@
>
> static void *oom_check(void *ptr)
> {
> - if (ptr == NULL)
> + if (ptr == NULL) {
> abort();
> + }
> return ptr;
> }
>
> @@ -43,18 +44,20 @@ void qemu_free(void *ptr)
>
> void *qemu_malloc(size_t size)
> {
> - if (!size)
> + if (!size) {
> abort();
> + }
> return oom_check(malloc(size));
> }
>
> void *qemu_realloc(void *ptr, size_t size)
> {
> - if (size)
> + if (size) {
> return oom_check(realloc(ptr, size));
> - else {
> - if (ptr)
> + } else {
> + if (ptr) {
> return realloc(ptr, size);
> + }
> }
> abort();
> }
> @@ -81,8 +84,9 @@ char *qemu_strndup(const char *str, size_t size)
> const char *end = memchr(str, 0, size);
> char *new;
>
> - if (end)
> + if (end) {
> size = end - str;
> + }
>
> new = qemu_malloc(size + 1);
> new[size] = 0;
>
>
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-05-20 7:45 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <200905191830.n4JIUCMB019417@d03av04.boulder.ibm.com>
2009-05-20 7:44 ` [Qemu-devel] Re: [COMMIT 26d64a8] Format per CODING_STYLE Kevin Wolf
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).