Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Nov 2010 10:15:29 +0000 (UTC)
From:      Kevin Lo <kevlo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r215518 - head/usr.bin/at
Message-ID:  <201011191015.oAJAFTrn068813@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kevlo
Date: Fri Nov 19 10:15:29 2010
New Revision: 215518
URL: http://svn.freebsd.org/changeset/base/215518

Log:
  Close file and directory descriptors
  
  MFC after:	3 days

Modified:
  head/usr.bin/at/at.c

Modified: head/usr.bin/at/at.c
==============================================================================
--- head/usr.bin/at/at.c	Fri Nov 19 10:14:07 2010	(r215517)
+++ head/usr.bin/at/at.c	Fri Nov 19 10:15:29 2010	(r215518)
@@ -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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011191015.oAJAFTrn068813>