aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2011-06-28 15:58:37 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2011-06-28 15:58:37 +0000
commit0beed5ba03f1a29dbc27c62a063ca51dbe625663 (patch)
tree716bcf177b42bd2100e17b825a5fa8ffe7871b57
parentd0baebff32c10e87a27dffd5474f27b3949f3938 (diff)
downloadgnunet-0beed5ba03f1a29dbc27c62a063ca51dbe625663.tar.gz
gnunet-0beed5ba03f1a29dbc27c62a063ca51dbe625663.zip
memory leak
-rw-r--r--src/transport/plugin_transport_unix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/transport/plugin_transport_unix.c b/src/transport/plugin_transport_unix.c
index 27187a9d6..4f10d7270 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -1173,6 +1173,7 @@ libgnunet_plugin_transport_unix_done (void *cls)
1173 unix_transport_server_stop (plugin); 1173 unix_transport_server_stop (plugin);
1174 1174
1175 GNUNET_NETWORK_fdset_destroy (plugin->rs); 1175 GNUNET_NETWORK_fdset_destroy (plugin->rs);
1176 GNUNET_free (plugin->unix_socket_path);
1176 GNUNET_free (plugin); 1177 GNUNET_free (plugin);
1177 GNUNET_free (api); 1178 GNUNET_free (api);
1178 return NULL; 1179 return NULL;