gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r16056 - in gnunet: . src/transport


From: gnunet
Subject: [GNUnet-SVN] r16056 - in gnunet: . src/transport
Date: Mon, 18 Jul 2011 08:37:56 +0200

Author: grothoff
Date: 2011-07-18 08:37:56 +0200 (Mon, 18 Jul 2011)
New Revision: 16056

Modified:
   gnunet/TODO
   gnunet/src/transport/gnunet-service-transport.c
Log:
fix

Modified: gnunet/TODO
===================================================================
--- gnunet/TODO 2011-07-17 21:39:48 UTC (rev 16055)
+++ gnunet/TODO 2011-07-18 06:37:56 UTC (rev 16056)
@@ -4,6 +4,15 @@
   so that some of the 'local' IPs do not work due to the bindto);  the result
   seems to be that the plugin tries some of the broken addresses, fails and the
   transport-level connection never comes up.
+* Mantis:
+  - 1727 --- investigate (NEW)
+  - 1694 --- try to reproduce (non-deterministic, w. testcase, need 
core/valgrind)
+  - 1725 --- try to reproduce (non-deterministic, w. testcase, need core)
+  - 1724 --- try to reproduce
+  - 1709 --- need more data (Nate)
+  - 1717 --- need more data (Nate)
+  - 1701 --- try to reproduce (Nate)
+  - 1705 --- try to reproduce (Nate)
 * clean buildbots
 
 0.9.0pre4:

Modified: gnunet/src/transport/gnunet-service-transport.c
===================================================================
--- gnunet/src/transport/gnunet-service-transport.c     2011-07-17 21:39:48 UTC 
(rev 16055)
+++ gnunet/src/transport/gnunet-service-transport.c     2011-07-18 06:37:56 UTC 
(rev 16056)
@@ -6278,8 +6278,7 @@
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
               "Transport service is unloading plugins...\n");
 #endif
-  plug = plugins;
-  while (plug != NULL)
+  while (NULL != (plug = plugins))
     {
       if (plug->address_update_task != GNUNET_SCHEDULER_NO_TASK)
        {
@@ -6294,9 +6293,8 @@
           plug->addresses = al->next;
           GNUNET_free (al);
         }
-      tmp = plug->next;
+      plugins = plug->next;
       GNUNET_free (plug);
-      plug = tmp;
     }
   if (my_private_key != NULL)
     GNUNET_CRYPTO_rsa_key_free (my_private_key);




reply via email to

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