From owner-freebsd-questions Tue Dec 24 09:36:11 1996 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id JAA27306 for questions-outgoing; Tue, 24 Dec 1996 09:36:11 -0800 (PST) Received: from glacier.cold.org (glacier.cold.org [206.81.134.54]) by freefall.freebsd.org (8.8.4/8.8.4) with ESMTP id JAA27301 for ; Tue, 24 Dec 1996 09:36:09 -0800 (PST) Received: from localhost (brandon@localhost) by glacier.cold.org (8.7.5/8.7.3) with SMTP id KAA27942 for ; Tue, 24 Dec 1996 10:36:16 -0700 (MST) Date: Tue, 24 Dec 1996 10:36:16 -0700 (MST) From: Brandon Gillespie To: freebsd@freebsd.org Subject: bug alert Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-questions@freebsd.org X-Loop: FreeBSD.org Precedence: bulk There is a bug I introduced in Genesis patch 21. It may cause SEGV because it can possibly cause it to read into pages it should not be involved with. Quick fix is to edit src/strutil.c and edit lines 1160-1161, changing: return str_rindexc(s, len, *ss, -origin); return str_rindexs(s, len, ss, slen, -origin); To: return str_rindexc(s, len, *ss, origin); return str_rindexs(s, len, ss, slen, origin); Sorry for the inconvenience.. -Brandon Gillespie