Date: Tue, 24 Dec 1996 10:36:16 -0700 (MST) From: Brandon Gillespie <brandon@glacier.cold.org> To: freebsd@freebsd.org Subject: bug alert Message-ID: <Pine.NEB.3.95.961224103353.27937A-100000@glacier.cold.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.NEB.3.95.961224103353.27937A-100000>
