diff options
author | Christian Grothoff <christian@grothoff.org> | 2018-04-18 15:44:45 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2018-04-18 16:25:40 +0200 |
commit | cd32d04fb670e6feebe6c737e17e13675ac744b3 (patch) | |
tree | 6e52837bfd89b5b48d08943e0de89fd0335cd24c /src/namestore/gnunet-zoneimport.c | |
parent | 7eb7bd8666aeb2e855cd22b1ea7f44b87bb60400 (diff) |
fix deref
Diffstat (limited to 'src/namestore/gnunet-zoneimport.c')
-rw-r--r-- | src/namestore/gnunet-zoneimport.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/namestore/gnunet-zoneimport.c b/src/namestore/gnunet-zoneimport.c index 0148f42a77..4f4151c945 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, |