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

memleak fix with new dynamic depend structure

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dan McGee 2008-01-12 20:18:20 -06:00
parent 435ec29bc7
commit 4f26701793

View File

@ -101,7 +101,7 @@ static int does_conflict(pmpkg_t *pkg1, const char *conflict, pmpkg_t *pkg2)
_alpm_log(PM_LOG_DEBUG, "package %s conflicts with %s (by %s)\n", _alpm_log(PM_LOG_DEBUG, "package %s conflicts with %s (by %s)\n",
pkg1name, pkg2name, conflict); pkg1name, pkg2name, conflict);
} }
FREE(conf); _alpm_dep_free(conf);
return(match); return(match);
} }