aboutsummaryrefslogtreecommitdiff
path: root/src/namestore
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2018-04-18 15:44:45 +0200
committerChristian Grothoff <christian@grothoff.org>2018-04-18 16:25:40 +0200
commitcd32d04fb670e6feebe6c737e17e13675ac744b3 (patch)
tree6e52837bfd89b5b48d08943e0de89fd0335cd24c /src/namestore
parent7eb7bd8666aeb2e855cd22b1ea7f44b87bb60400 (diff)
downloadgnunet-cd32d04fb670e6feebe6c737e17e13675ac744b3.tar.gz
gnunet-cd32d04fb670e6feebe6c737e17e13675ac744b3.zip
fix deref
Diffstat (limited to 'src/namestore')
-rw-r--r--src/namestore/gnunet-zoneimport.c10
1 files 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
165 165
166 /** 166 /**
167 * Namestore operation pending for this record. 167 * Namestore operation pending for this record.
168 */ 168 */
169 struct GNUNET_NAMESTORE_QueueEntry *qe; 169 struct GNUNET_NAMESTORE_QueueEntry *qe;
170 170
171 /** 171 /**
172 * Zone responsible for this request. 172 * Zone responsible for this request.
173 */ 173 */
@@ -476,7 +476,7 @@ check_for_glue (void *cls,
476 } 476 }
477 if (NULL == 477 if (NULL ==
478 inet_ntop (AF_INET, 478 inet_ntop (AF_INET,
479 &rec->data.raw.data, 479 rec->data.raw.data,
480 ip, 480 ip,
481 ip_size)) 481 ip_size))
482 { 482 {
@@ -510,7 +510,7 @@ check_for_glue (void *cls,
510 } 510 }
511 if (NULL == 511 if (NULL ==
512 inet_ntop (AF_INET6, 512 inet_ntop (AF_INET6,
513 &rec->data.raw.data, 513 rec->data.raw.data,
514 ip, 514 ip,
515 ip_size)) 515 ip_size))
516 { 516 {
@@ -1135,7 +1135,7 @@ ns_lookup_result_cb (void *cls,
1135 const struct GNUNET_GNSRECORD_Data *rd) 1135 const struct GNUNET_GNSRECORD_Data *rd)
1136{ 1136{
1137 struct Request *req = cls; 1137 struct Request *req = cls;
1138 1138
1139 req->qe = NULL; 1139 req->qe = NULL;
1140 GNUNET_break (0 == memcmp (zone, 1140 GNUNET_break (0 == memcmp (zone,
1141 &req->zone->key, 1141 &req->zone->key,