X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=mem.c;h=9bee71d14fe503e9278596f5f4a492db548c399a;hb=cbd86744c2245a16a75c230733db23960cf19631;hp=1b9627cc145da0a1253295202e3580c5cb1a936f;hpb=4b8483ae278577a3adc8d84da81d77019704466f;p=onak.git diff --git a/mem.c b/mem.c index 1b9627c..9bee71d 100644 --- a/mem.c +++ b/mem.c @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: mem.c,v 1.5 2003/06/04 20:57:10 noodles Exp $ */ #include @@ -171,3 +173,26 @@ void free_publickey(struct openpgp_publickey *key) { key = nextkey; } } + +/** + * free_statskey - free an stats key structure. + * @key: The key to free. + * + * Takes a stats key and frees the memory used by it and the linked list + * of sigs under it. Doesn't recurse into the list as it's assumed all the + * objects referenced also exist in the hash. + */ +void free_statskey(struct stats_key *key) +{ + if (key != NULL) { + if (key->sigs != NULL) { + llfree(key->sigs, NULL); + key->sigs = NULL; + } + if (key->signs != NULL) { + llfree(key->signs, NULL); + key->signs = NULL; + } + free(key); + } +}