From owner-cvs-all@FreeBSD.ORG Wed Sep 21 04:25:06 2005 Return-Path: X-Original-To: cvs-all@FreeBSD.org 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 AAD3C16A41F; Wed, 21 Sep 2005 04:25:06 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6ED1443D49; Wed, 21 Sep 2005 04:25:06 +0000 (GMT) (envelope-from kientzle@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 j8L4P6Kd010935; Wed, 21 Sep 2005 04:25:06 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j8L4P6BQ010934; Wed, 21 Sep 2005 04:25:06 GMT (envelope-from kientzle) Message-Id: <200509210425.j8L4P6BQ010934@repoman.freebsd.org> From: Tim Kientzle Date: Wed, 21 Sep 2005 04:25:06 +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/lib/libarchive Makefile archive_entry.c archive_read.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_read_support_format_zip.c archive_util.c archive_write_set_format_cpio.c ... 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: Wed, 21 Sep 2005 04:25:06 -0000 kientzle 2005-09-21 04:25:06 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_entry.c archive_read.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_format_cpio.c archive_read_support_format_iso9660.c archive_read_support_format_tar.c archive_read_support_format_zip.c archive_util.c archive_write_set_format_cpio.c archive_write_set_format_pax.c archive_write_set_format_ustar.c Log: Add a lot of error checks, based on the patches provided by Dan Lukes. Also fixes a memory leak reported by Andrew Turner. PR: bin/83476 Thanks to: Dan Lukes, Andrew Turner Revision Changes Path 1.39 +1 -1 src/lib/libarchive/Makefile 1.31 +21 -2 src/lib/libarchive/archive_entry.c 1.17 +9 -0 src/lib/libarchive/archive_read.c 1.4 +6 -0 src/lib/libarchive/archive_read_open_fd.c 1.9 +4 -0 src/lib/libarchive/archive_read_open_file.c 1.14 +8 -0 src/lib/libarchive/archive_read_support_format_cpio.c 1.9 +12 -1 src/lib/libarchive/archive_read_support_format_iso9660.c 1.35 +15 -1 src/lib/libarchive/archive_read_support_format_tar.c 1.6 +4 -0 src/lib/libarchive/archive_read_support_format_zip.c 1.10 +1 -1 src/lib/libarchive/archive_util.c 1.6 +1 -1 src/lib/libarchive/archive_write_set_format_cpio.c 1.30 +3 -0 src/lib/libarchive/archive_write_set_format_pax.c 1.13 +1 -1 src/lib/libarchive/archive_write_set_format_ustar.c