commit | f914a8af2be457ce735e72a71ebe8c9a19cf4b23 | [log] [tgz] |
---|---|---|
author | Glenn L McGrath <bug1@ihug.co.nz> | Sat Jan 20 06:23:54 2001 +0000 |
committer | Glenn L McGrath <bug1@ihug.co.nz> | Sat Jan 20 06:23:54 2001 +0000 |
tree | 3301894f7ab20093d041a854ca50576a448ea563 | |
parent | 6f65a3a7e88a87bdd0f921884cd05ae593659dda [diff] [blame] |
Close files before exit
diff --git a/dpkg_deb.c b/dpkg_deb.c index 337e6e1..3590495 100644 --- a/dpkg_deb.c +++ b/dpkg_deb.c
@@ -155,5 +155,6 @@ } } status = readTarFile(srcFd, extract_flag, list_flag, extract_to_stdout, verbose_flag, NULL, extract_list); + close (srcFd); return(EXIT_SUCCESS); }