index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Aurelien Foret <aurelien@archlinux.org> | 2006-02-22 20:49:33 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2006-02-22 20:49:33 +0000 |
commit | 16ff7cfa8ef2d50c97d79357c2b2c1fdc2bc241b (patch) | |
tree | d259cc5a0de95d478c3a21df549dbd90880147cd /lib/libalpm/list.c | |
parent | 78ffd98701b64bff74fc530db91ffc7e8768989a (diff) |
-rw-r--r-- | lib/libalpm/list.c | 6 |
diff --git a/lib/libalpm/list.c b/lib/libalpm/list.c index 632ee2a3..0e1c9426 100644 --- a/lib/libalpm/list.c +++ b/lib/libalpm/list.c @@ -42,13 +42,15 @@ PMList *_alpm_list_new() return(list); } -void _alpm_list_free(PMList *list) +void _alpm_list_free(PMList *list, _alpm_fn_free fn) { PMList *ptr, *it = list; while(it) { ptr = it->next; - free(it->data); + if(fn) { + fn(it->data); + } free(it); it = ptr; } |