From: Wouter Wijngaards Date: Thu, 2 Jun 2016 07:17:38 +0000 (+0000) Subject: - Fix libubound for edns optlist feature. X-Git-Tag: release-1.5.9rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83396d9644fdfd85ada1d03d2f224540dbddd396;p=thirdparty%2Funbound.git - Fix libubound for edns optlist feature. git-svn-id: file:///svn/unbound/trunk@3744 be551aaa-1e26-0410-a405-d3ace91eadb9 --- 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);