From 8f65dd2db3c32e12752592f76833dc66e0bd3f9e Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 23 Feb 2017 22:53:24 +0100 Subject: [PATCH] fix use of uninitialized ID after last refactoring --- src/pt/gnunet-daemon-pt.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pt/gnunet-daemon-pt.c b/src/pt/gnunet-daemon-pt.c index 97ac8e961..54556cc52 100644 --- a/src/pt/gnunet-daemon-pt.c +++ b/src/pt/gnunet-daemon-pt.c @@ -864,14 +864,13 @@ handle_dns_response (void *cls, const struct DnsResponseMessage *msg) { struct CadetExit *exit = cls; - struct GNUNET_TUN_DnsHeader dns; size_t mlen; struct RequestContext *rc; mlen = ntohs (msg->header.size) - sizeof (*msg); for (rc = exit->receive_queue_head; NULL != rc; rc = rc->next) { - if (dns.id == rc->dns_id) + if (msg->dns.id == rc->dns_id) { GNUNET_STATISTICS_update (stats, gettext_noop ("# DNS replies received"), -- 2.25.1