From owner-cvs-usrbin Mon Mar 10 11:20:42 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA16554 for cvs-usrbin-outgoing; Mon, 10 Mar 1997 11:20:42 -0800 (PST) Received: (from joerg@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id LAA16547; Mon, 10 Mar 1997 11:20:41 -0800 (PST) Date: Mon, 10 Mar 1997 11:20:41 -0800 (PST) From: Joerg Wunsch Message-Id: <199703101920.LAA16547@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/find operator.c Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk joerg 97/03/10 11:20:40 Modified: usr.bin/find operator.c Log: Fix a gross bug in the ! operator optimization code. The following kind of expressions caused a dereferencation of an uninitialized malloc area, yielding wrong expression evaluation at best, and core dumps at worst (malloc.conf -> AJ): find ... ! \( expr1 ! expr2 \) ... Revision Changes Path 1.3 +7 -1 src/usr.bin/find/operator.c