aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-03-28 12:42:39 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-03-28 12:42:39 +0000
commite806c9794b23600f3b50ec0aefb9e300a4b98810 (patch)
tree31ce839c24f335fbe041c161bfb30e99d28ed168 /src
parent8b570f0b07ba98e61a2523a4a3be768ba2ad22b5 (diff)
downloadgnunet-e806c9794b23600f3b50ec0aefb9e300a4b98810.tar.gz
gnunet-e806c9794b23600f3b50ec0aefb9e300a4b98810.zip
fixing crash in unix
Diffstat (limited to 'src')
-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 036096f6d..e48606f8f 100644
--- a/src/transport/plugin_transport_unix.c
+++ b/src/transport/plugin_transport_unix.c
@@ -880,6 +880,7 @@ unix_plugin_get_session (void *cls,
880 s = GNUNET_new (struct Session); 880 s = GNUNET_new (struct Session);
881 s->target = address->peer; 881 s->target = address->peer;
882 s->address = GNUNET_HELLO_address_copy (address); 882 s->address = GNUNET_HELLO_address_copy (address);
883 s->plugin = plugin;
883 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task); 884 GNUNET_assert (GNUNET_SCHEDULER_NO_TASK == s->timeout_task);
884 s->timeout_task = GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT, 885 s->timeout_task = GNUNET_SCHEDULER_add_delayed (GNUNET_CONSTANTS_IDLE_CONNECTION_TIMEOUT,
885 &session_timeout, 886 &session_timeout,