From 83396d9644fdfd85ada1d03d2f224540dbddd396 Mon Sep 17 00:00:00 2001 From: Wouter Wijngaards Date: Thu, 2 Jun 2016 07:17:38 +0000 Subject: [PATCH] - Fix libubound for edns optlist feature. git-svn-id: file:///svn/unbound/trunk@3744 be551aaa-1e26-0410-a405-d3ace91eadb9 --- doc/Changelog | 3 +++ libunbound/libworker.c | 1 + 2 files changed, 4 insertions(+) diff --git a/doc/Changelog b/doc/Changelog index a6bce071c..411d2687c 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,3 +1,6 @@ +2 June 2016: Wouter + - Fix libubound for edns optlist feature. + 31 May 2016: Wouter - Fix windows service to be created run with limited rights, as a network service account, from Mario Turschmann. diff --git a/libunbound/libworker.c b/libunbound/libworker.c index 3065bede4..2af392706 100644 --- a/libunbound/libworker.c +++ b/libunbound/libworker.c @@ -581,6 +581,7 @@ setup_qinfo_edns(struct libworker* w, struct ctx_query* q, edns->ext_rcode = 0; edns->edns_version = 0; edns->bits = EDNS_DO; + edns->opt_list = NULL; if(sldns_buffer_capacity(w->back->udp_buff) < 65535) edns->udp_size = (uint16_t)sldns_buffer_capacity( w->back->udp_buff);