mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 18:52:07 -04:00
Clear OpenSSL errors on context creation failures
This commit is contained in:
parent
247422c69f
commit
96db614d69
1 changed files with 1 additions and 1 deletions
|
|
@ -231,7 +231,7 @@ openssleddsa_verify(dst_context_t *dctx, const isc_region_t *sig) {
|
|||
REQUIRE(alginfo != NULL);
|
||||
|
||||
if (ctx == NULL) {
|
||||
return (ISC_R_NOMEMORY);
|
||||
return (dst__openssl_toresult(ISC_R_NOMEMORY));
|
||||
}
|
||||
|
||||
if (sig->length != alginfo->sig_size) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue