diff options
author | Glenn L McGrath <bug1@ihug.co.nz> | 2001-01-20 06:23:54 +0000 |
---|---|---|
committer | Glenn L McGrath <bug1@ihug.co.nz> | 2001-01-20 06:23:54 +0000 |
commit | f914a8af2be457ce735e72a71ebe8c9a19cf4b23 (patch) | |
tree | 3301894f7ab20093d041a854ca50576a448ea563 /archival/dpkg_deb.c | |
parent | 6f65a3a7e88a87bdd0f921884cd05ae593659dda (diff) | |
download | busybox-w32-f914a8af2be457ce735e72a71ebe8c9a19cf4b23.tar.gz busybox-w32-f914a8af2be457ce735e72a71ebe8c9a19cf4b23.tar.bz2 busybox-w32-f914a8af2be457ce735e72a71ebe8c9a19cf4b23.zip |
Close files before exit
Diffstat (limited to 'archival/dpkg_deb.c')
-rw-r--r-- | archival/dpkg_deb.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archival/dpkg_deb.c b/archival/dpkg_deb.c index 337e6e10d..35904950f 100644 --- a/archival/dpkg_deb.c +++ b/archival/dpkg_deb.c | |||
@@ -155,5 +155,6 @@ extern int dpkg_deb_main(int argc, char **argv) | |||
155 | } | 155 | } |
156 | } | 156 | } |
157 | status = readTarFile(srcFd, extract_flag, list_flag, extract_to_stdout, verbose_flag, NULL, extract_list); | 157 | status = readTarFile(srcFd, extract_flag, list_flag, extract_to_stdout, verbose_flag, NULL, extract_list); |
158 | close (srcFd); | ||
158 | return(EXIT_SUCCESS); | 159 | return(EXIT_SUCCESS); |
159 | } | 160 | } |