22 lines
704 B
Diff
22 lines
704 B
Diff
Reference:http://downloads.isc.org/isc/bind/9.16.33/patches/0004-CVE-2022-38178.patch
|
|
---
|
|
bind/bind-9.11.36/lib/dns/openssleddsa_link.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/bind/bind-9.11.36/lib/dns/openssleddsa_link.c b/bind/bind-9.11.36/lib/dns/openssleddsa_link.c
|
|
index 8b115ec..4f3c2a8 100644
|
|
--- a/bind/bind-9.11.36/lib/dns/openssleddsa_link.c
|
|
+++ b/bind/bind-9.11.36/lib/dns/openssleddsa_link.c
|
|
@@ -325,7 +325,7 @@ openssleddsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
|
siglen = DNS_SIG_ED448SIZE;
|
|
|
|
if (sig->length != siglen)
|
|
- return (DST_R_VERIFYFAILURE);
|
|
+ DST_RET(DST_R_VERIFYFAILURE);
|
|
|
|
isc_buffer_usedregion(buf, &tbsreg);
|
|
|
|
--
|
|
2.33.0
|
|
|