gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r21284 - gnunet/src/peerinfo


From: gnunet
Subject: [GNUnet-SVN] r21284 - gnunet/src/peerinfo
Date: Sun, 6 May 2012 02:28:52 +0200

Author: grothoff
Date: 2012-05-06 02:28:52 +0200 (Sun, 06 May 2012)
New Revision: 21284

Modified:
   gnunet/src/peerinfo/peerinfo_api.c
Log:
-fix

Modified: gnunet/src/peerinfo/peerinfo_api.c
===================================================================
--- gnunet/src/peerinfo/peerinfo_api.c  2012-05-05 18:51:21 UTC (rev 21283)
+++ gnunet/src/peerinfo/peerinfo_api.c  2012-05-06 00:28:52 UTC (rev 21284)
@@ -490,6 +490,7 @@
   void *cb_cls;
   uint16_t ms;
 
+  GNUNET_assert (NULL != ic);
   h->in_receive = GNUNET_NO;
   ic->in_receive = GNUNET_NO;
   cb = ic->callback;
@@ -504,17 +505,19 @@
          _("Failed to receive response from `PEERINFO' service."));
     return;
   }
+
   if (GNUNET_MESSAGE_TYPE_PEERINFO_INFO_END == ntohs (msg->type))
   {
     /* normal end of list of peers, signal end, process next pending request */
     LOG (GNUNET_ERROR_TYPE_DEBUG,
          "Received end of list of peers from `%s' service\n", "PEERINFO");
-    GNUNET_PEERINFO_iterate_cancel (ic);
+    GNUNET_PEERINFO_iterate_cancel (ic);   
     trigger_transmit (h);
     if (NULL != cb)
       cb (cb_cls, NULL, NULL, NULL);
     return;
   }
+
   ms = ntohs (msg->size);
   if ((ms < sizeof (struct InfoMessage)) ||
       (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_PEERINFO_INFO))
@@ -593,7 +596,7 @@
        GNUNET_i2s (&im->peer), "PEERINFO");
   h->in_receive = GNUNET_YES;
   ic->in_receive = GNUNET_YES;
-  GNUNET_CLIENT_receive (h->client, &peerinfo_handler, ic,
+  GNUNET_CLIENT_receive (h->client, &peerinfo_handler, h,
                          GNUNET_TIME_absolute_get_remaining (ic->timeout));
   if (NULL != cb)
     cb (cb_cls, &im->peer, hello, NULL);




reply via email to

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