xbps_pkgdb_unlock: there's no need to call xbps_pkgdb_update().

Users should call xbps_end() instead; this will flush pkgdb automatically.
This commit is contained in:
Juan RP 2015-10-30 13:17:21 +01:00
parent 6c7c0843f0
commit 3ae197f94a

View File

@ -114,8 +114,6 @@ xbps_pkgdb_lock(struct xbps_handle *xhp)
void
xbps_pkgdb_unlock(struct xbps_handle *xhp)
{
(void)xbps_pkgdb_update(xhp, true, false);
if (pkgdb_fd != -1) {
if (lockf(pkgdb_fd, F_ULOCK, 0) == -1)
xbps_dbg_printf(xhp, "[pkgdb] failed to unlock pkgdb: %s\n", strerror(errno));