From: graham.gower Date: Fri, 13 Nov 2009 03:30:39 +0000 (+0000) Subject: Free the lock, close the file descriptor. X-Git-Url: https://git.librecmc.org/?p=oweals%2Fopkg-lede.git;a=commitdiff_plain;h=96bc9929dc1d9c5c95c7b24663d8b883289b6bf3 Free the lock, close the file descriptor. git-svn-id: http://opkg.googlecode.com/svn/trunk@297 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358 --- diff --git a/libopkg/opkg_conf.c b/libopkg/opkg_conf.c index dc2c5f9..2d7b881 100644 --- a/libopkg/opkg_conf.c +++ b/libopkg/opkg_conf.c @@ -420,6 +420,9 @@ void opkg_conf_deinit(opkg_conf_t *conf) hash_table_deinit(&conf->file_hash); if (&conf->obs_file_hash) hash_table_deinit(&conf->obs_file_hash); + + lockf(conf->lock_fd, F_ULOCK, 0); + close(conf->lock_fd); } static int opkg_conf_set_default_dest(opkg_conf_t *conf,