From owner-freebsd-current Sun Dec 31 9:56:14 2000 From owner-freebsd-current@FreeBSD.ORG Sun Dec 31 09:56:12 2000 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mail.eqpankkiiriliike.fi (fw.eQpankkiiriliike.fi [212.226.216.93]) by hub.freebsd.org (Postfix) with ESMTP id 69D8837B400 for ; Sun, 31 Dec 2000 09:56:11 -0800 (PST) Received: from eqonline.fi ([10.11.0.244]) by mail.eqpankkiiriliike.fi (Netscape Messaging Server 4.15) with ESMTP id G6G1S800.E15 for ; Sun, 31 Dec 2000 19:55:20 +0200 Sender: sja@FreeBSD.ORG Message-ID: <3A4F7346.97C47D59@eqonline.fi> Date: Sun, 31 Dec 2000 19:56:22 +0200 From: User Sja Organization: eQ Online X-Mailer: Mozilla 4.75 [en] (X11; U; FreeBSD 5.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: current@freebsd.org Subject: Re: make buildworld fails after cvsup Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG > I am cvsup to current last night and this morning the make buildworld > giving following errors.. anyone have similar or know what this is? > > uudecode < /usr/src/share/tabset/xerox1720.uu > uudecode < /usr/src/share/tabset/xerox1730.uu > uudecode < /usr/src/share/tabset/xerox1730-lm.uu > uudecode < /usr/src/share/tabset/zenith29.uu > ===> share/termcap > ex - /usr/src/share/termcap/termcap.src < /usr/src/share/termcap/reorder > /dev/null > Segmentation fault - core dumped Hmm, ex is crashing... Does "vi" also core dump on you? There may be a bit of fallout from the recent removal of "CIRCLEQ"s (see /usr/include/sys/queue.h). How does this patch look to everyone: RCS file: /usr/cvs/src/lib/libc/db/mpool/mpool.c,v retrieving revision 1.6 diff -u -r1.6 mpool.c --- src/lib/libc/db/mpool/mpool.c 2000/12/29 20:24:58 1.6 +++ src/lib/libc/db/mpool/mpool.c 2000/12/31 17:46:35 @@ -271,7 +271,7 @@ BKT *bp; /* Free up any space allocated to the lru pages. */ - while ((bp = TAILQ_FIRST(&mp->lqh)) != (void *)&mp->lqh) { + while ((bp = TAILQ_FIRST(&mp->lqh)) != NULL) { TAILQ_REMOVE(&mp->lqh, bp, q); free(bp); } ++sja To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message