From: graham.gower Date: Tue, 12 Jan 2010 04:52:37 +0000 (+0000) Subject: Don't try to close the file if its not open. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=e530e023db675648bc8dfbdd415ba9776bb453ca Don't try to close the file if its not open. git-svn-id: http://opkg.googlecode.com/svn/trunk@517 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index bcc79ed..678f219 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -376,7 +376,7 @@ opkg_conf_write_status_files(void) list_for_each_entry(iter, &conf->pkg_dest_list.head, node) { dest = (pkg_dest_t *)iter->data; - if (fclose(dest->status_fp) == EOF) { + if (dest->status_fp && fclose(dest->status_fp) == EOF) { opkg_perror(ERROR, "Couldn't close %s", dest->status_file_name); ret = -1; }