mirror of
https://github.com/saymrwulf/cryptography.git
synced 2026-05-14 20:37:55 +00:00
return from void function cannot compile on solaris studio (#5385)
This commit is contained in:
parent
77099636b6
commit
95a5bac201
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ HMAC_CTX *Cryptography_HMAC_CTX_new(void) {
|
|||
|
||||
void Cryptography_HMAC_CTX_free(HMAC_CTX *ctx) {
|
||||
#if CRYPTOGRAPHY_OPENSSL_110_OR_GREATER
|
||||
return HMAC_CTX_free(ctx);
|
||||
HMAC_CTX_free(ctx);
|
||||
#else
|
||||
if (ctx != NULL) {
|
||||
HMAC_CTX_cleanup(ctx);
|
||||
|
|
|
|||
Loading…
Reference in a new issue