From: malc Date: Tue, 19 May 2009 18:28:26 +0000 (+0400) Subject: Format per CODING_STYLE X-Git-Tag: v0.11.0-rc0~568 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=26d64a85a32192b559364f241908fb24cda378e6;p=thirdparty%2Fqemu.git Format per CODING_STYLE Signed-off-by: malc --- diff --git a/qemu-malloc.c b/qemu-malloc.c index 5e9f47f518c..295d1856efa 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;