libalpm/conflict.c : small memleak fix.

Signed-off-by: Chantry Xavier <shiningxc@gmail.com>
This commit is contained in:
Nagy Gabor 2007-08-04 17:11:03 +02:00 committed by Dan McGee
parent b96922679e
commit ab06221521

View file

@ -155,6 +155,7 @@ alpm_list_t *_alpm_checkconflicts(pmdb_t *db, alpm_list_t *packages)
_alpm_log(PM_LOG_DEBUG, "check targets vs targets"); _alpm_log(PM_LOG_DEBUG, "check targets vs targets");
check_conflict(packages, packages, &baddeps, 0); check_conflict(packages, packages, &baddeps, 0);
alpm_list_free(dblist);
return(baddeps); return(baddeps);
} }