diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | openbsd-compat/getrrsetbyname-ldns.c | 3 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,8 @@ | |||
1 | 20120628 | ||
2 | - (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null | ||
3 | pointer deref in the client when built with LDNS and using DNSSEC with a | ||
4 | CNAME. Patch from gregdlg+mr at hochet info. | ||
5 | |||
1 | 20120622 | 6 | 20120622 |
2 | - (dtucker) [contrib/cygwin/ssh-host-config] Ensure that user sshd runs as | 7 | - (dtucker) [contrib/cygwin/ssh-host-config] Ensure that user sshd runs as |
3 | can logon as a service. Patch from vinschen at redhat com. | 8 | can logon as a service. Patch from vinschen at redhat com. |
diff --git a/openbsd-compat/getrrsetbyname-ldns.c b/openbsd-compat/getrrsetbyname-ldns.c index 8ce5678c9..19666346b 100644 --- a/openbsd-compat/getrrsetbyname-ldns.c +++ b/openbsd-compat/getrrsetbyname-ldns.c | |||
@@ -205,7 +205,8 @@ getrrsetbyname(const char *hostname, unsigned int rdclass, | |||
205 | } | 205 | } |
206 | 206 | ||
207 | if (rr->_rr_class == rrset->rri_rdclass && | 207 | if (rr->_rr_class == rrset->rri_rdclass && |
208 | rr->_rr_type == LDNS_RR_TYPE_RRSIG) { | 208 | rr->_rr_type == LDNS_RR_TYPE_RRSIG && |
209 | rrset->rri_sigs) { | ||
209 | rdata = &rrset->rri_sigs[index_sig++]; | 210 | rdata = &rrset->rri_sigs[index_sig++]; |
210 | } | 211 | } |
211 | 212 | ||