From owner-cvs-src@FreeBSD.ORG Mon Aug 16 14:18:22 2004 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6908E16A4CE; Mon, 16 Aug 2004 14:18:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4759A43D62; Mon, 16 Aug 2004 14:18:22 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7GEIMkI096194; Mon, 16 Aug 2004 14:18:22 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7GEIMLK096193; Mon, 16 Aug 2004 14:18:22 GMT (envelope-from tjr) Message-Id: <200408161418.i7GEIMLK096193@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 16 Aug 2004 14:18:22 +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/m4 eval.c extern.h main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Aug 2004 14:18:22 -0000 tjr 2004-08-16 14:18:22 UTC FreeBSD src repository Modified files: usr.bin/m4 eval.c extern.h main.c Log: Store a pointer to "null" in struct ndblock's defn member instead of a duplicate allocated on the heap; the address defn points to is significant, and is checked against the address of "null" in certain conditionals. PR: 59883 MFC after: 1 week Revision Changes Path 1.22 +3 -3 src/usr.bin/m4/eval.c 1.12 +1 -1 src/usr.bin/m4/extern.h 1.26 +2 -2 src/usr.bin/m4/main.c