mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
pointer deref in the client when built with LDNS and using DNSSEC with a CNAME. Patch from gregdlg+mr at hochet info.
This commit is contained in:
parent
62dcd63f5e
commit
8908da7dce
@ -1,3 +1,8 @@
|
|||||||
|
20120628
|
||||||
|
- (dtucker) [openbsd-compat/getrrsetbyname-ldns.c] bz #2022: prevent null
|
||||||
|
pointer deref in the client when built with LDNS and using DNSSEC with a
|
||||||
|
CNAME. Patch from gregdlg+mr at hochet info.
|
||||||
|
|
||||||
20120622
|
20120622
|
||||||
- (dtucker) [contrib/cygwin/ssh-host-config] Ensure that user sshd runs as
|
- (dtucker) [contrib/cygwin/ssh-host-config] Ensure that user sshd runs as
|
||||||
can logon as a service. Patch from vinschen at redhat com.
|
can logon as a service. Patch from vinschen at redhat com.
|
||||||
|
@ -205,7 +205,8 @@ getrrsetbyname(const char *hostname, unsigned int rdclass,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (rr->_rr_class == rrset->rri_rdclass &&
|
if (rr->_rr_class == rrset->rri_rdclass &&
|
||||||
rr->_rr_type == LDNS_RR_TYPE_RRSIG) {
|
rr->_rr_type == LDNS_RR_TYPE_RRSIG &&
|
||||||
|
rrset->rri_sigs) {
|
||||||
rdata = &rrset->rri_sigs[index_sig++];
|
rdata = &rrset->rri_sigs[index_sig++];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user