]> the.earth.li Git - onak.git/blobdiff - mem.c
Fix compilation with later versions of Nettle
[onak.git] / mem.c
diff --git a/mem.c b/mem.c
index 83c63849f83b356ddfae5ab419dd8c4d17593a5e..6ac80e61a28897ffb1d39160ada4658a5358bf04 100644 (file)
--- a/mem.c
+++ b/mem.c
@@ -13,8 +13,7 @@
  * more details.
  *
  * You should have received a copy of the GNU General Public License along with
- * this program; if not, write to the Free Software Foundation, Inc., 51
- * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ * this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 #include <stdio.h>
@@ -173,26 +172,3 @@ 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);
-       }
-}