From 232b838a54e689800267e1b98ace207bd442b8cd Mon Sep 17 00:00:00 2001 From: Xavier Chantry Date: Tue, 19 Aug 2008 01:02:40 +0200 Subject: libalpm/add.c : ensure the old pkg was fully loaded. This fixes FS#11218. Signed-off-by: Xavier Chantry Signed-off-by: Dan McGee --- lib/libalpm/add.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib/libalpm/add.c') diff --git a/lib/libalpm/add.c b/lib/libalpm/add.c index 72ea70c0..eef7aab1 100644 --- a/lib/libalpm/add.c +++ b/lib/libalpm/add.c @@ -656,6 +656,9 @@ static int commit_single_pkg(pmpkg_t *newpkg, int pkg_current, int pkg_count, /* we'll need to save some record for backup checks later */ oldpkg = _alpm_pkg_dup(local); + /* make sure all infos are loaded because the database entry + * will be removed soon */ + _alpm_db_read(oldpkg->origin_data.db, oldpkg, INFRQ_ALL); /* copy over the install reason */ newpkg->reason = alpm_pkg_get_reason(local); -- cgit v1.2.3-24-g4f1b