summaryrefslogtreecommitdiff
path: root/imap/src/c-client/mail.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap/src/c-client/mail.c')
-rw-r--r--imap/src/c-client/mail.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/imap/src/c-client/mail.c b/imap/src/c-client/mail.c
index b52d0626..981025c1 100644
--- a/imap/src/c-client/mail.c
+++ b/imap/src/c-client/mail.c
@@ -326,6 +326,16 @@ void mail_link (DRIVER *driver)
driver->next = NIL; /* this driver is the end of the list */
}
+void free_id(IDLIST **idp)
+{
+ if(!idp || !*idp) return;
+
+ if((*idp)->name) fs_give((void **) &(*idp)->name);
+ if((*idp)->value) fs_give((void **) &(*idp)->value);
+ if((*idp)->next) free_id (&(*idp)->next);
+ fs_give((void **)idp);
+}
+
/* Mail manipulate driver parameters
* Accepts: mail stream
* function code