From 1b018e2091a2e5b999c67de5fbf5f96db3c9c5e8 Mon Sep 17 00:00:00 2001 From: Matthias Wachs Date: Tue, 28 Jun 2011 14:12:54 +0000 Subject: [PATCH] memory leak --- src/transport/plugin_transport_tcp.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/transport/plugin_transport_tcp.c b/src/transport/plugin_transport_tcp.c index af9538a68..478598af1 100644 --- a/src/transport/plugin_transport_tcp.c +++ b/src/transport/plugin_transport_tcp.c @@ -2180,6 +2180,7 @@ libgnunet_plugin_transport_tcp_done (void *cls) GNUNET_CONNECTION_destroy (tcp_probe->sock, GNUNET_NO); GNUNET_free (tcp_probe); } + GNUNET_CONTAINER_multihashmap_destroy (plugin->nat_wait_conns); GNUNET_free (plugin); GNUNET_free (api); return NULL; -- 2.25.1