summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAurelien Foret <aurelien@archlinux.org>2005-05-03 19:29:00 +0200
committerAurelien Foret <aurelien@archlinux.org>2005-05-03 19:29:00 +0200
commitd5bfc60734f9bc7ee0877394e667c135081012b7 (patch)
tree1a3e9e06d3a2d14af39b7349bbc49d5cb0c9779e /src
parent9177ce7962ee14ca86c3da3f5c46b3ab611a521d (diff)
downloadpacman-d5bfc60734f9bc7ee0877394e667c135081012b7.tar.gz
pacman-d5bfc60734f9bc7ee0877394e667c135081012b7.tar.xz
fixed a small memory leak during the cleanup of config data
Diffstat (limited to 'src')
-rw-r--r--src/pacman/pacman.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c
index 45b5cfd3..39de1f0e 100644
--- a/src/pacman/pacman.c
+++ b/src/pacman/pacman.c
@@ -222,6 +222,7 @@ void cleanup(int signum)
FREE(pmo_configfile);
FREE(pmo_proxyhost);
FREE(pmo_xfercommand);
+ FREELIST(pmo_holdpkg);
FREELIST(pm_targets);