aboutsummaryrefslogtreecommitdiff
path: root/src/transport/plugin_transport_udp.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-12-18 09:03:12 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-12-18 09:03:12 +0000
commit8a53815a8166a256e42435720fe9e22dc6bc0dfa (patch)
tree24ee46fddc85158cf49254f4d1e89630dbcd4843 /src/transport/plugin_transport_udp.c
parentba6439dcf325a3e6e598c034e60815f39646562b (diff)
downloadgnunet-8a53815a8166a256e42435720fe9e22dc6bc0dfa.tar.gz
gnunet-8a53815a8166a256e42435720fe9e22dc6bc0dfa.zip
fix for fix
Diffstat (limited to 'src/transport/plugin_transport_udp.c')
-rw-r--r--src/transport/plugin_transport_udp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_udp.c b/src/transport/plugin_transport_udp.c
index 43c46aae7..1ba5bff6c 100644
--- a/src/transport/plugin_transport_udp.c
+++ b/src/transport/plugin_transport_udp.c
@@ -3285,6 +3285,11 @@ libgnunet_plugin_transport_udp_done (void *cls)
3285 GNUNET_CONTAINER_heap_destroy (plugin->defrag_ctxs); 3285 GNUNET_CONTAINER_heap_destroy (plugin->defrag_ctxs);
3286 plugin->defrag_ctxs = NULL; 3286 plugin->defrag_ctxs = NULL;
3287 } 3287 }
3288 if (plugin->mst != NULL)
3289 {
3290 GNUNET_SERVER_mst_destroy(plugin->mst);
3291 plugin->mst = NULL;
3292 }
3288 3293
3289 /* Clean up leftover messages */ 3294 /* Clean up leftover messages */
3290 struct UDP_MessageWrapper * udpw; 3295 struct UDP_MessageWrapper * udpw;