From 1c010194a0b02ca2fdec15b4c7577873c250b391 Mon Sep 17 00:00:00 2001
From: Eric Andersen <andersen@codepoet.org>
Date: Thu, 16 Oct 2003 14:21:26 +0000
Subject: Do not set errno when they asked for size 0

---
 libc/stdlib/malloc-930716/malloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'libc/stdlib')

diff --git a/libc/stdlib/malloc-930716/malloc.c b/libc/stdlib/malloc-930716/malloc.c
index 3e69f1140..f24c24879 100644
--- a/libc/stdlib/malloc-930716/malloc.c
+++ b/libc/stdlib/malloc-930716/malloc.c
@@ -167,7 +167,7 @@ void * __malloc_unlocked (size_t size)
 #else
     /* Some programs will call malloc (0).  Lets be strict and return NULL */
     if (unlikely(size == 0))
-	goto oom;
+	return 0
 #endif
     /* Check if they are doing something dumb like malloc(-1) */
     if (unlikely(((unsigned long)size > (unsigned long)(sizeof (struct list)*-2))))
-- 
cgit v1.2.3