X-Git-Url: http://the.earth.li/gitweb/?a=blobdiff_plain;f=mem.c;h=4a713e4ea5dec6b67fdfb8ff78a0ea22551432e9;hb=4843efc642ddcfe524bb6ba37b01154e57489ff7;hp=0795bf3b66f93ab42d0632f6e0c22ffa1e25a43b;hpb=34b03028378025ad22c8d29f70e81109cee690c2;p=onak.git diff --git a/mem.c b/mem.c index 0795bf3..4a713e4 100644 --- a/mem.c +++ b/mem.c @@ -4,16 +4,18 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: mem.c,v 1.6 2003/06/07 13:45:35 noodles Exp $ */ #include #include #include +#include #include "keystructs.h" #include "ll.h" #include "mem.h" -#include "stats.h" /** * packet_dup - duplicate an OpenPGP packet. @@ -188,6 +190,10 @@ void free_statskey(struct stats_key *key) llfree(key->sigs, NULL); key->sigs = NULL; } + if (key->signs != NULL) { + llfree(key->signs, NULL); + key->signs = NULL; + } free(key); } }