summaryrefslogtreecommitdiff
path: root/lib/rpmal.c
diff options
context:
space:
mode:
authorjbj <devnull@localhost>2001-11-23 15:49:11 +0000
committerjbj <devnull@localhost>2001-11-23 15:49:11 +0000
commite98018b4d8730a80b2d320e6393f9129b2d13770 (patch)
tree88e4d57de86d16edfa7d6f9de4692383a69c8153 /lib/rpmal.c
parent9d66753a5b99ecd9ae022c5ff42eec58b57d8c13 (diff)
downloadlibrpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.tar.gz
librpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.tar.bz2
librpm-tizen-e98018b4d8730a80b2d320e6393f9129b2d13770.zip
- fix a couple dinky memory leaks.
- build with an internal zlib for now. CVS patchset: 5207 CVS date: 2001/11/23 15:49:11
Diffstat (limited to 'lib/rpmal.c')
-rw-r--r--lib/rpmal.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rpmal.c b/lib/rpmal.c
index a5fc2a61a..b3026111a 100644
--- a/lib/rpmal.c
+++ b/lib/rpmal.c
@@ -227,6 +227,7 @@ availableList alFree(availableList al)
al->list = _free(al->list);
al->alloced = 0;
alFreeIndex(al);
+ al = _free(al);
return NULL;
}