gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnunet] 09/14: another special case for loopback


From: gnunet
Subject: [GNUnet-SVN] [gnunet] 09/14: another special case for loopback
Date: Mon, 23 Jan 2017 14:42:49 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

commit f34dc89035290008fd8e4078776f6cd497c750af
Author: Christian Grothoff <address@hidden>
AuthorDate: Mon Jan 23 14:19:06 2017 +0100

    another special case for loopback
---
 src/cadet/gnunet-service-cadet-new_channel.c | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/src/cadet/gnunet-service-cadet-new_channel.c 
b/src/cadet/gnunet-service-cadet-new_channel.c
index fbd68e3e3..e7a13157b 100644
--- a/src/cadet/gnunet-service-cadet-new_channel.c
+++ b/src/cadet/gnunet-service-cadet-new_channel.c
@@ -407,9 +407,13 @@ channel_destroy (struct CadetChannel *ch)
     GNUNET_SCHEDULER_cancel (ch->retry_control_task);
     ch->retry_control_task = NULL;
   }
-  GCT_remove_channel (ch->t,
-                      ch,
-                      ch->ctn);
+  if (GNUNET_NO == ch->is_loopback)
+  {
+    GCT_remove_channel (ch->t,
+                        ch,
+                        ch->ctn);
+    ch->t = NULL;
+  }
   GNUNET_free (ch);
 }
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]