summaryrefslogtreecommitdiff
path: root/lib/libalpm/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libalpm/list.h')
-rw-r--r--lib/libalpm/list.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/libalpm/list.h b/lib/libalpm/list.h
index e7c9eb31..734a53d5 100644
--- a/lib/libalpm/list.h
+++ b/lib/libalpm/list.h
@@ -32,6 +32,16 @@ typedef struct __pmlist_t {
typedef struct __pmlist_t PMList;
#define FREELIST(p) do { if(p) { pm_list_free(p); p = NULL; } } while(0)
+#define FREELISTPTR(p) do { \
+ if(p) { \
+ PMList *i; \
+ for(i = p; i; i = i->next) { \
+ i->data = NULL; \
+ } \
+ pm_list_free(p); \
+ p = NULL; \
+ } \
+} while(0)
/* Sort comparison callback function declaration */
typedef int (*pm_fn_cmp) (const void *, const void *);