gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r10346 - gnunet/src/transport


From: gnunet
Subject: [GNUnet-SVN] r10346 - gnunet/src/transport
Date: Wed, 17 Feb 2010 15:02:11 +0100

Author: grothoff
Date: 2010-02-17 15:02:11 +0100 (Wed, 17 Feb 2010)
New Revision: 10346

Modified:
   gnunet/src/transport/transport_api.c
Log:
fix

Modified: gnunet/src/transport/transport_api.c
===================================================================
--- gnunet/src/transport/transport_api.c        2010-02-17 14:00:07 UTC (rev 
10345)
+++ gnunet/src/transport/transport_api.c        2010-02-17 14:02:11 UTC (rev 
10346)
@@ -1561,8 +1561,12 @@
 {
   struct GNUNET_TRANSPORT_TransmitHandle *th = cls;
   struct NeighbourList *n;
+  GNUNET_CONNECTION_TransmitReadyNotify notify;
+  void *notify_cls;
 
   th->notify_delay_task = GNUNET_SCHEDULER_NO_TASK;
+  notify = th->notify;
+  notify_cls = th->notify_cls;
   n = th->neighbour;
   switch (n->transmit_stage)
     {
@@ -1583,8 +1587,8 @@
     default:
       GNUNET_break (0);
     }
-  if (NULL != th->notify)
-    th->notify (th->notify_cls, 0, NULL);
+  if (NULL != notify)
+    notify (notify_cls, 0, NULL);
 }
 
 





reply via email to

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