fixed a possible memory corruption

This commit is contained in:
Aurelien Foret 2006-01-13 20:59:57 +00:00
parent d42c6bdc49
commit 4232cd9cca

View file

@ -111,12 +111,13 @@ int pacman_remove(list_t *targets)
if(config->flags & PM_TRANS_FLAG_RECURSE || config->flags & PM_TRANS_FLAG_CASCADE) { if(config->flags & PM_TRANS_FLAG_RECURSE || config->flags & PM_TRANS_FLAG_CASCADE) {
PM_LIST *lp; PM_LIST *lp;
/* list transaction targets */ /* list transaction targets */
i = NULL;
for(lp = alpm_list_first(alpm_trans_getinfo(PM_TRANS_PACKAGES)); lp; lp = alpm_list_next(lp)) { for(lp = alpm_list_first(alpm_trans_getinfo(PM_TRANS_PACKAGES)); lp; lp = alpm_list_next(lp)) {
PM_PKG *pkg = alpm_list_getdata(lp); PM_PKG *pkg = alpm_list_getdata(lp);
i = list_add(i, strdup(alpm_pkg_getinfo(pkg, PM_PKG_NAME))); i = list_add(i, strdup(alpm_pkg_getinfo(pkg, PM_PKG_NAME)));
} }
list_display("\nTargets:", i); list_display("\nTargets:", i);
list_free(i); FREELIST(i);
/* get confirmation */ /* get confirmation */
if(yesno("\nDo you want to remove these packages? [Y/n] ") == 0) { if(yesno("\nDo you want to remove these packages? [Y/n] ") == 0) {
goto error; goto error;