[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnunet] 01/05: fix deref
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnunet] 01/05: fix deref |
Date: |
Wed, 18 Apr 2018 16:59:37 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
commit cd32d04fb670e6feebe6c737e17e13675ac744b3
Author: Christian Grothoff <address@hidden>
AuthorDate: Wed Apr 18 15:44:45 2018 +0200
fix deref
---
src/namestore/gnunet-zoneimport.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/namestore/gnunet-zoneimport.c
b/src/namestore/gnunet-zoneimport.c
index 0148f42a7..4f4151c94 100644
--- a/src/namestore/gnunet-zoneimport.c
+++ b/src/namestore/gnunet-zoneimport.c
@@ -165,9 +165,9 @@ struct Request
/**
* Namestore operation pending for this record.
- */
+ */
struct GNUNET_NAMESTORE_QueueEntry *qe;
-
+
/**
* Zone responsible for this request.
*/
@@ -476,7 +476,7 @@ check_for_glue (void *cls,
}
if (NULL ==
inet_ntop (AF_INET,
- &rec->data.raw.data,
+ rec->data.raw.data,
ip,
ip_size))
{
@@ -510,7 +510,7 @@ check_for_glue (void *cls,
}
if (NULL ==
inet_ntop (AF_INET6,
- &rec->data.raw.data,
+ rec->data.raw.data,
ip,
ip_size))
{
@@ -1135,7 +1135,7 @@ ns_lookup_result_cb (void *cls,
const struct GNUNET_GNSRECORD_Data *rd)
{
struct Request *req = cls;
-
+
req->qe = NULL;
GNUNET_break (0 == memcmp (zone,
&req->zone->key,
--
To stop receiving notification emails like this one, please contact
address@hidden