1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-08-13 17:03:46 -04:00

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");
check_conflict(packages, packages, &baddeps, 0);
alpm_list_free(dblist);
return(baddeps);
}