From owner-freebsd-stable@FreeBSD.ORG Mon Mar 21 19:19:23 2005 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9651616A4CE for ; Mon, 21 Mar 2005 19:19:23 +0000 (GMT) Received: from dd3.kasserver.com (dd2718.kasserver.com [81.209.184.159]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE0A743D5F for ; Mon, 21 Mar 2005 19:19:22 +0000 (GMT) (envelope-from freebsd@chillt.de) Received: from [192.168.0.5] (dsl-082-083-057-146.arcor-ip.net [82.83.57.146]) by dd3.kasserver.com (Postfix) with ESMTP id A4416959A0; Mon, 21 Mar 2005 20:19:16 +0100 (CET) Message-ID: <423F1E37.4080107@chillt.de> Date: Mon, 21 Mar 2005 20:19:19 +0100 From: Bartosz Fabianowski User-Agent: Mozilla Thunderbird 1.0 (X11/20050313) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Dan Nelson References: <423F0418.3050702@chillt.de> <20050321181209.GG5243@dan.emsphone.com> <423F11A5.40502@chillt.de> <20050321191058.GI5243@dan.emsphone.com> In-Reply-To: <20050321191058.GI5243@dan.emsphone.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-stable@freebsd.org Subject: Re: malloc() debugging flags broken on RELENG_5 X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 21 Mar 2005 19:19:23 -0000 > The actual test in the malloc code reads: > > if (malloc_abort || issetugid() || getuid() == 0 || getgid() == 0) > wrterror(p) > > , so it may also trigger if your primary groupid is 0 (wheel). Just > being a member of the wheel group won't trigger it. Thank you very much for pointing this out. I should have looked myself before complaining, of course. My user's primary group is indeed wheel. I will patch my source tree, recompile libc and see whether this helps (I realize this is much more of a hack than a solution but as long as it works, I am fine). - Bartosz