From owner-cvs-all@FreeBSD.ORG Mon Aug 4 01:31:38 2008 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99C131065671; Mon, 4 Aug 2008 01:31:38 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 81C398FC16; Mon, 4 Aug 2008 01:31:38 +0000 (UTC) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.2/8.14.2) with ESMTP id m741VcAQ051586; Mon, 4 Aug 2008 01:31:38 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.2/8.14.1/Submit) id m741VcWO051585; Mon, 4 Aug 2008 01:31:38 GMT (envelope-from cperciva@repoman.freebsd.org) Message-Id: <200808040131.m741VcWO051585@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to cperciva@repoman.freebsd.org using -f From: Colin Percival Date: Mon, 4 Aug 2008 01:25:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/bin/echo echo.c src/bin/sh mknodes.c src/bin/stty gfmt.c src/lib/libarchive archive_private.h src/libexec/fingerd fingerd.c src/usr.bin/cpio cpio.h src/usr.bin/lex flex.skl src/usr.bin/tar bsdtar.h src/usr.bin/yacc defs.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 04 Aug 2008 01:31:38 -0000 cperciva 2008-08-04 01:25:48 UTC FreeBSD src repository Modified files: bin/echo echo.c bin/sh mknodes.c bin/stty gfmt.c lib/libarchive archive_private.h libexec/fingerd fingerd.c usr.bin/cpio cpio.h usr.bin/lex flex.skl usr.bin/tar bsdtar.h usr.bin/yacc defs.h Log: SVN rev 181269 on 2008-08-04 01:25:48Z by cperciva Mark functions as __dead2 in order to help the LLVM static checker understand which code paths aren't possible. This commit eliminates 117 false positive bug reports of the form "allocate memory; error out if pointer is NULL; use pointer". Revision Changes Path 1.19 +1 -1 src/bin/echo/echo.c 1.18 +1 -1 src/bin/sh/mknodes.c 1.21 +1 -1 src/bin/stty/gfmt.c 1.30 +1 -1 src/lib/libarchive/archive_private.h 1.26 +1 -1 src/libexec/fingerd/fingerd.c 1.4 +1 -1 src/usr.bin/cpio/cpio.h 1.10 +2 -1 src/usr.bin/lex/flex.skl 1.35 +1 -1 src/usr.bin/tar/bsdtar.h 1.13 +24 -24 src/usr.bin/yacc/defs.h