index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Andrew Gregory <andrew.gregory.8@gmail.com> | 2013-02-15 13:08:32 -0500 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-02-24 13:11:54 +1000 |
commit | 0bbc406ee8773ed646393cee175280c33fea8dff (patch) | |
tree | aa6fdc6206ab9873399ef7d1eca67d3316695158 | |
parent | 8803ae3b4d5d90249243b664b02695f7b106b02f (diff) |
-rw-r--r-- | lib/libalpm/conflict.c | 2 |
diff --git a/lib/libalpm/conflict.c b/lib/libalpm/conflict.c index 96f2109b..1aa653fc 100644 --- a/lib/libalpm/conflict.c +++ b/lib/libalpm/conflict.c @@ -453,7 +453,7 @@ alpm_list_t *_alpm_db_find_fileconflicts(alpm_handle_t *handle, conflicts = add_fileconflict(handle, conflicts, path, p1, p2); if(handle->pm_errno == ALPM_ERR_MEMORY) { FREELIST(conflicts); - FREELIST(common_files); + alpm_list_free(common_files); return NULL; } } |