summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/db.c
diff options
context:
space:
mode:
authorDave Reisner <d@falconindy.com>2011-03-24 20:10:01 +0100
committerDan McGee <dan@archlinux.org>2011-03-24 23:18:24 +0100
commite68e994eb2c32c4b7ad5288f8f4b8809e1c39c9b (patch)
treea4c0ed7bf95f6b47e4f4b55af1dd28ace6161e3a /lib/libalpm/db.c
parent351942c71b80adaac614ed1c353d0e8e6f49ac8b (diff)
downloadpacman-e68e994eb2c32c4b7ad5288f8f4b8809e1c39c9b.tar.gz
pacman-e68e994eb2c32c4b7ad5288f8f4b8809e1c39c9b.tar.xz
alpm/db: do not close local DB in alpm_db_unregister_all
pacman 3.5.0 removed alpm_db_register_local, so calling alpm_db_unregister_all leaves the front end in a position where there's no local db, and no way to re-register it. Signed-off-by: Dave Reisner <d@falconindy.com> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/db.c')
-rw-r--r--lib/libalpm/db.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/lib/libalpm/db.c b/lib/libalpm/db.c
index fb64faed..bf6df06e 100644
--- a/lib/libalpm/db.c
+++ b/lib/libalpm/db.c
@@ -90,12 +90,8 @@ int SYMEXPORT alpm_db_unregister_all(void)
/* Do not unregister a database if a transaction is on-going */
ASSERT(handle->trans == NULL, RET_ERR(PM_ERR_TRANS_NOT_NULL, -1));
- /* close local database */
- db = handle->db_local;
- if(db) {
- db->ops->unregister(db);
- handle->db_local = NULL;
- }
+ /* since the local DB is registered in alpm_initialize(), we'll be
+ * symmetrical and let the cleanup occur in alpm_release() */
/* and also sync ones */
for(i = handle->dbs_sync; i; i = i->next) {