mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-01 22:58:50 -04:00
module-raop: fix compilation
This commit is contained in:
parent
5333c969a4
commit
cb46c8c5f9
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue