OSDN Git Service

Don't set errno if for zero SIZE returns.
authorMiles Bader <miles@lsi.nec.co.jp>
Thu, 16 Oct 2003 10:12:45 +0000 (10:12 -0000)
committerMiles Bader <miles@lsi.nec.co.jp>
Thu, 16 Oct 2003 10:12:45 +0000 (10:12 -0000)
Code formatting cleanup.

libc/stdlib/malloc/malloc.c

index 98ac41c..5ba552d 100644 (file)
@@ -186,23 +186,26 @@ malloc (size_t size)
     __heap_check (&__malloc_heap, "malloc");
 #endif
 
-#if defined(__MALLOC_GLIBC_COMPAT__)
-  if (unlikely(size == 0))
-      size++;
+#ifdef __MALLOC_GLIBC_COMPAT__
+  if (unlikely (size == 0))
+    size++;
 #else
   /* Some programs will call malloc (0).  Lets be strict and return NULL */
-  if (unlikely(size == 0))
-      goto oom;
+  if (unlikely (size == 0))
+    return 0;
 #endif
+
   /* Check if they are doing something dumb like malloc(-1) */
   if (unlikely(((unsigned long)size > (unsigned long)(MALLOC_HEADER_SIZE*-2))))
-      goto oom;
+    goto oom;
 
   mem = malloc_from_heap (size, &__malloc_heap);
-  if (unlikely(!mem)) {
-oom:
-      __set_errno(ENOMEM);
-      return NULL;
-  }
+  if (unlikely (!mem))
+    {
+    oom:
+      __set_errno (ENOMEM);
+      return 0;
+    }
+
   return mem;
 }