From owner-svn-src-all@FreeBSD.ORG Mon Nov 22 06:37:21 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8C62A106566B; Mon, 22 Nov 2010 06:37:21 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 7AC598FC08; Mon, 22 Nov 2010 06:37:21 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id oAM6bLYt080544; Mon, 22 Nov 2010 06:37:21 GMT (envelope-from kevlo@svn.freebsd.org) Received: (from kevlo@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id oAM6bLGo080542; Mon, 22 Nov 2010 06:37:21 GMT (envelope-from kevlo@svn.freebsd.org) Message-Id: <201011220637.oAM6bLGo080542@svn.freebsd.org> From: Kevin Lo Date: Mon, 22 Nov 2010 06:37:21 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org X-SVN-Group: stable-8 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r215655 - stable/8/usr.bin/at X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Nov 2010 06:37:21 -0000 Author: kevlo Date: Mon Nov 22 06:37:21 2010 New Revision: 215655 URL: http://svn.freebsd.org/changeset/base/215655 Log: MFC r215518: Close file and directory descriptors Modified: stable/8/usr.bin/at/at.c Modified: stable/8/usr.bin/at/at.c ============================================================================== --- stable/8/usr.bin/at/at.c Mon Nov 22 06:31:42 2010 (r215654) +++ stable/8/usr.bin/at/at.c Mon Nov 22 06:37:21 2010 (r215655) @@ -524,6 +524,7 @@ list_jobs(long *joblist, int len) jobno); } PRIV_END + closedir(spool); } static void @@ -594,6 +595,7 @@ process_jobs(int argc, char **argv, int while((ch = getc(fp)) != EOF) { putchar(ch); } + fclose(fp); } break; @@ -604,6 +606,7 @@ process_jobs(int argc, char **argv, int } } } + closedir(spool); } /* delete_jobs */ #define ATOI2(ar) ((ar)[0] - '0') * 10 + ((ar)[1] - '0'); (ar) += 2;