From 579d4ac0842583f79a5f214a232c2097511d4d07 Mon Sep 17 00:00:00 2001 From: niklas Date: Tue, 11 Feb 1997 17:46:36 +0000 Subject: [PATCH] is we were set[ug]id an unitialized ptr bit us --- lib/libc/stdlib/malloc.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lib/libc/stdlib/malloc.c b/lib/libc/stdlib/malloc.c index b7890a91c0b..da2c17b83d1 100644 --- a/lib/libc/stdlib/malloc.c +++ b/lib/libc/stdlib/malloc.c @@ -8,7 +8,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: malloc.c,v 1.21 1997/02/09 22:55:38 tholo Exp $"; +static char rcsid[] = "$OpenBSD: malloc.c,v 1.22 1997/02/11 17:46:36 niklas Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -435,8 +435,11 @@ malloc_init () continue; b[j] = '\0'; p = b; - } else if (i == 1 && issetugid() == 0) { - p = getenv("MALLOC_OPTIONS"); + } else if (i == 1) { + if (issetugid() == 0) + p = getenv("MALLOC_OPTIONS"); + else + continue; } else if (i == 2) { p = malloc_options; } -- 2.20.1