Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/rsa/blinding.c')
-rw-r--r--crypto/rsa/blinding.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/crypto/rsa/blinding.c b/crypto/rsa/blinding.c
index 06f87a78..6b13d0de 100644
--- a/crypto/rsa/blinding.c
+++ b/crypto/rsa/blinding.c
@@ -182,14 +182,18 @@ void BN_BLINDING_free(BN_BLINDING *r) {
return;
}
- if (r->A != NULL)
+ if (r->A != NULL) {
BN_free(r->A);
- if (r->Ai != NULL)
+ }
+ if (r->Ai != NULL) {
BN_free(r->Ai);
- if (r->e != NULL)
+ }
+ if (r->e != NULL) {
BN_free(r->e);
- if (r->mod != NULL)
+ }
+ if (r->mod != NULL) {
BN_free(r->mod);
+ }
OPENSSL_free(r);
}