From cb46c8c5f94d8df020bb4d46431103e6a66addc6 Mon Sep 17 00:00:00 2001 From: Wim Taymans Date: Thu, 16 Mar 2023 14:50:22 +0100 Subject: [PATCH] module-raop: fix compilation --- src/modules/module-raop-sink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/module-raop-sink.c b/src/modules/module-raop-sink.c index 7072c2a25..f7c2a079a 100644 --- a/src/modules/module-raop-sink.c +++ b/src/modules/module-raop-sink.c @@ -1152,7 +1152,7 @@ done: BIGNUM *e_bn = BN_bin2bn(exponent, esize, NULL); if (rsa == NULL || n_bn == NULL || e_bn == NULL) goto error; - RSA_set0_key(rsa, n_bn, e_bn NULL); + RSA_set0_key(rsa, n_bn, e_bn, NULL); n_bn = e_bn = NULL; if ((res = RSA_public_encrypt(len, data, enc, rsa, RSA_PKCS1_OAEP_PADDING)) <= 0) goto error;