From 16ff7cfa8ef2d50c97d79357c2b2c1fdc2bc241b Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Wed, 22 Feb 2006 20:49:33 +0000 Subject: improved _alpm_list_free handling --- lib/libalpm/group.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'lib/libalpm/group.h') diff --git a/lib/libalpm/group.h b/lib/libalpm/group.h index 6fa3a24c..e36d3603 100644 --- a/lib/libalpm/group.h +++ b/lib/libalpm/group.h @@ -33,16 +33,10 @@ typedef struct __pmgrp_t { #define FREEGRP(p) do { if(p) { _alpm_grp_free(p); p = NULL; } } while(0) -#define FREELISTGRPS(p) do { \ - PMList *i; \ - for(i = p; i; i = i->next) { \ - FREEGRP(i->data); \ - } \ - FREELIST(p); \ -} while(0) +#define FREELISTGRPS(p) _FREELIST(p, _alpm_grp_free) pmgrp_t *_alpm_grp_new(void); -void _alpm_grp_free(pmgrp_t *grp); +void _alpm_grp_free(void *data); int _alpm_grp_cmp(const void *g1, const void *g2); #endif /* _ALPM_GROUP_H */ -- cgit v1.2.3-24-g4f1b