diff options
Diffstat (limited to 'libopkg')
-rw-r--r-- | libopkg/opkg_conf.c | 3 |
1 files changed, 3 insertions, 0 deletions
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, |