gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] r35959 - gnunet/src/rps


From: gnunet
Subject: [GNUnet-SVN] r35959 - gnunet/src/rps
Date: Sat, 20 Jun 2015 15:48:26 +0200

Author: ch3
Date: 2015-06-20 15:48:26 +0200 (Sat, 20 Jun 2015)
New Revision: 35959

Modified:
   gnunet/src/rps/gnunet-service-rps.c
Log:
-fixed wrong pointer usage

Modified: gnunet/src/rps/gnunet-service-rps.c
===================================================================
--- gnunet/src/rps/gnunet-service-rps.c 2015-06-20 13:48:23 UTC (rev 35958)
+++ gnunet/src/rps/gnunet-service-rps.c 2015-06-20 13:48:26 UTC (rev 35959)
@@ -1683,7 +1683,7 @@
   #endif /* ENABLE_MALICIOUS */
 
   /* Do actual logic */
-  peers = (struct GNUNET_PeerIdentity *) &msg[1];
+  peers = (struct GNUNET_PeerIdentity *) &in_msg[1];
 
   LOG (GNUNET_ERROR_TYPE_DEBUG,
        "PULL REPLY received, got following %u peers:\n",




reply via email to

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