From 331f3fdf4f72984e780dc71d8c1b05968c5172d1 Mon Sep 17 00:00:00 2001 From: Nickolay Olshevsky Date: Sun, 17 Nov 2024 16:40:08 +0200 Subject: [PATCH] Fix wrappers --- src/lib/crypto/bn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/crypto/bn.h b/src/lib/crypto/bn.h index c82e5a87f..93a794694 100644 --- a/src/lib/crypto/bn.h +++ b/src/lib/crypto/bn.h @@ -291,7 +291,7 @@ class Ctx { EVP_PKEY_CTX *ctx_; public: - Ctx() : ctx_(NULL){}; + Ctx(EVP_PKEY_CTX *val = NULL) : ctx_(val){}; Ctx(int id) {