Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Sep 2019 16:16:47 +0000 (UTC)
From:      Toomas Soome <tsoome@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r352451 - head/stand/libsa
Message-ID:  <201909171616.x8HGGlkb066218@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tsoome
Date: Tue Sep 17 16:16:46 2019
New Revision: 352451
URL: https://svnweb.freebsd.org/changeset/base/352451

Log:
  loader: revert r352421
  
  As insisted by kib, malloc(0) is quite legal.

Modified:
  head/stand/libsa/zalloc_malloc.c

Modified: head/stand/libsa/zalloc_malloc.c
==============================================================================
--- head/stand/libsa/zalloc_malloc.c	Tue Sep 17 15:53:40 2019	(r352450)
+++ head/stand/libsa/zalloc_malloc.c	Tue Sep 17 16:16:46 2019	(r352451)
@@ -73,9 +73,6 @@ Malloc_align(size_t bytes, size_t alignment)
 {
 	Guard *res;
 
-	if (bytes == 0)
-		return (NULL);
-
 #ifdef USEENDGUARD
 	bytes += MALLOCALIGN + 1;
 #else



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201909171616.x8HGGlkb066218>