index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dave Reisner <d@falconindy.com> | 2011-03-24 15:10:01 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-24 17:18:24 -0500 |
commit | e68e994eb2c32c4b7ad5288f8f4b8809e1c39c9b (patch) | |
tree | a4c0ed7bf95f6b47e4f4b55af1dd28ace6161e3a /lib/libalpm/db.c | |
parent | 351942c71b80adaac614ed1c353d0e8e6f49ac8b (diff) |
-rw-r--r-- | lib/libalpm/db.c | 8 |
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) { |