diff options
author | Judd Vinet <judd@archlinux.org> | 2005-10-07 23:29:49 +0000 |
---|---|---|
committer | Judd Vinet <judd@archlinux.org> | 2005-10-07 23:29:49 +0000 |
commit | 5ef51b3e266cf43411947248886372001fdb207a (patch) | |
tree | 8d255349530045686053faacd1804502a96b269c /lib/libalpm/trans.c | |
parent | 79031ccd1a544475162facb8ca3d671f3464d1f8 (diff) | |
download | pacman-5ef51b3e266cf43411947248886372001fdb207a.tar.xz |
Merging in recent fixes/additions from 2.9.7
Diffstat (limited to 'lib/libalpm/trans.c')
-rw-r--r-- | lib/libalpm/trans.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libalpm/trans.c b/lib/libalpm/trans.c index c7c4448f..43f134e0 100644 --- a/lib/libalpm/trans.c +++ b/lib/libalpm/trans.c @@ -46,6 +46,7 @@ pmtrans_t *trans_new() trans->targets = NULL; trans->packages = NULL; + trans->skiplist = NULL; trans->type = 0; trans->flags = 0; trans->cb_event = NULL; @@ -68,6 +69,7 @@ void trans_free(pmtrans_t *trans) i->data = NULL; } FREELIST(trans->packages); + FREELIST(trans->skiplist); } else { FREELISTPKGS(trans->packages); } |