summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/pacman/deptest.c1
-rw-r--r--src/pacman/sync.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/pacman/deptest.c b/src/pacman/deptest.c
index 6b104bad..32fb3d08 100644
--- a/src/pacman/deptest.c
+++ b/src/pacman/deptest.c
@@ -70,6 +70,7 @@ int pacman_deptest(alpm_list_t *targets)
break;
}
}
+ alpm_list_free(provides);
}
if(!found) {
diff --git a/src/pacman/sync.c b/src/pacman/sync.c
index 5f1072ff..6f3c5d5e 100644
--- a/src/pacman/sync.c
+++ b/src/pacman/sync.c
@@ -532,6 +532,7 @@ int sync_trans(alpm_list_t *targets, int sync_only)
if(prov) {
pmpkg_t *pkg = alpm_list_getdata(prov);
pname = alpm_pkg_get_name(pkg);
+ alpm_list_free(prov);
break;
}
}