From a0c0a00fc419b7bc08202a79134fcd5bc0427071 Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Thu, 15 Sep 2016 16:59:08 -0400 Subject: Bash-4.4 distribution sources and documentation --- xmalloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'xmalloc.c') diff --git a/xmalloc.c b/xmalloc.c index 2344d2d5..b32c0685 100644 --- a/xmalloc.c +++ b/xmalloc.c @@ -1,6 +1,6 @@ /* xmalloc.c -- safe versions of malloc and realloc */ -/* Copyright (C) 1991-2009 Free Software Foundation, Inc. +/* Copyright (C) 1991-2016 Free Software Foundation, Inc. This file is part of GNU Bash, the GNU Bourne Again SHell. @@ -61,7 +61,7 @@ static size_t allocated; /* */ /* **************************************************************** */ -#if defined (HAVE_SBRK) +#if defined (HAVE_SBRK) && defined (USING_BASH_MALLOC) #define FINDBRK() \ do { \ if (brkfound == 0) \ @@ -86,7 +86,7 @@ allocerr (func, bytes) const char *func; size_t bytes; { -#if defined (HAVE_SBRK) +#if defined (HAVE_SBRK) && defined (USING_BASH_MALLOC) allocated = findbrk (); fatal_error (_("%s: cannot allocate %lu bytes (%lu bytes allocated)"), func, (unsigned long)bytes, (unsigned long)allocated); #else -- cgit v1.2.1