From owner-cvs-all@FreeBSD.ORG Fri Dec 17 13:20:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3768716A4CE; Fri, 17 Dec 2004 13:20:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DAAC43D4C; Fri, 17 Dec 2004 13:20:20 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id iBHDKKW5060584; Fri, 17 Dec 2004 13:20:20 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id iBHDKJni060583; Fri, 17 Dec 2004 13:20:19 GMT (envelope-from harti) Message-Id: <200412171320.iBHDKJni060583@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 17 Dec 2004 13:20:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make arch.c dir.c dir.h main.c nonints.h parse.c str.c suff.c targ.c var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 17 Dec 2004 13:20:20 -0000 harti 2004-12-17 13:20:19 UTC FreeBSD src repository Modified files: usr.bin/make arch.c dir.c dir.h main.c nonints.h parse.c str.c suff.c targ.c var.c Log: Remove all the cleanup functions. There is no reason to free memory just before exiting (especially given the number of memory leaks) - it just costs time. Revision Changes Path 1.43 +0 -55 src/usr.bin/make/arch.c 1.45 +0 -27 src/usr.bin/make/dir.c 1.16 +0 -1 src/usr.bin/make/dir.h 1.110 +0 -8 src/usr.bin/make/main.c 1.28 +0 -6 src/usr.bin/make/nonints.h 1.67 +0 -13 src/usr.bin/make/parse.c 1.34 +0 -18 src/usr.bin/make/str.c 1.39 +6 -28 src/usr.bin/make/suff.c 1.34 +0 -22 src/usr.bin/make/targ.c 1.58 +0 -7 src/usr.bin/make/var.c