There was an error while loading. Please reload this page.
1 parent 630c97d commit b624521Copy full SHA for b624521
cbits/HsOpenSSL.c
@@ -83,7 +83,7 @@ HMAC_CTX *HsOpenSSL_HMAC_CTX_new(void) {
83
84
void HsOpenSSL_HMAC_CTX_free(HMAC_CTX *ctx) {
85
#if OPENSSL_VERSION_NUMBER >= 0x10100000L
86
- return HMAC_CTX_free();
+ HMAC_CTX_free(ctx);
87
#else
88
HMAC_CTX_cleanup(ctx);
89
free(ctx);
0 commit comments