fix warning
authorSchanzenbach, Martin <mschanzenbach@posteo.de>
Fri, 14 Feb 2020 14:38:25 +0000 (15:38 +0100)
committerSchanzenbach, Martin <mschanzenbach@posteo.de>
Fri, 14 Feb 2020 14:38:25 +0000 (15:38 +0100)
src/reclaim/gnunet-service-reclaim.c
src/reclaim/reclaim_api.c

index b617d0ec39ad1da941d067f8854aacf01f4a4360..d4d44c3fc6d4f510d2f807872041a15fbcb8e658 100644 (file)
@@ -1907,7 +1907,6 @@ attest_iter_cb (void *cls,
   struct Iterator *ai = cls;
   struct GNUNET_MQ_Envelope *env;
   struct AttestationResultMessage *arm;
-  struct GNUNET_RECLAIM_Attestation *att;
   char *data_tmp;
 
   if ((rd_count != 1) ||
@@ -1916,8 +1915,6 @@ attest_iter_cb (void *cls,
     GNUNET_NAMESTORE_zone_iterator_next (ai->ns_it, 1);
     return;
   }
-  att = GNUNET_RECLAIM_attestation_deserialize (rd->data,
-                                                rd->data_size);
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Found attestation under: %s\n",
               label);
   GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
index b863789a26f946ad155baa11156f67091e0b68fa..cfe13794934196f1a42ba29762eb12d2bf92355a 100644 (file)
@@ -705,11 +705,9 @@ handle_attribute_result (void *cls, const struct AttributeResultMessage *msg)
   struct GNUNET_RECLAIM_AttributeIterator *it;
   struct GNUNET_RECLAIM_Operation *op;
   size_t attr_len;
-  size_t attest_len;
   uint32_t r_id = ntohl (msg->id);
 
   attr_len = ntohs (msg->attr_len);
-  attest_len = ntohs (msg->attestation_len);
   LOG (GNUNET_ERROR_TYPE_DEBUG, "Processing attribute result.\n");