diff options
author | Aurelien Foret <aurelien@archlinux.org> | 2005-05-03 17:29:00 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-05-03 17:29:00 +0000 |
commit | d5bfc60734f9bc7ee0877394e667c135081012b7 (patch) | |
tree | 1a3e9e06d3a2d14af39b7349bbc49d5cb0c9779e | |
parent | 9177ce7962ee14ca86c3da3f5c46b3ab611a521d (diff) | |
download | pacman-d5bfc60734f9bc7ee0877394e667c135081012b7.tar.xz |
fixed a small memory leak during the cleanup of config data
-rw-r--r-- | src/pacman/pacman.c | 1 |
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); |