summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortb <tb@openbsd.org>2018-08-19 20:17:20 +0000
committertb <tb@openbsd.org>2018-08-19 20:17:20 +0000
commita895afb10e8e2e253e4c740be43cd5c6c56b17c0 (patch)
treec30cad444f5d605dd4f0a9ac97d660022c6f70a9
parentDon't leak db on error in RSA_padding_check_PKCS1_OAEP(). (diff)
downloadwireguard-openbsd-a895afb10e8e2e253e4c740be43cd5c6c56b17c0.tar.xz
wireguard-openbsd-a895afb10e8e2e253e4c740be43cd5c6c56b17c0.zip
whitespace fix
-rw-r--r--lib/libcrypto/rsa/rsa_oaep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypto/rsa/rsa_oaep.c b/lib/libcrypto/rsa/rsa_oaep.c
index 555205813a7..c463a885d27 100644
--- a/lib/libcrypto/rsa/rsa_oaep.c
+++ b/lib/libcrypto/rsa/rsa_oaep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsa_oaep.c,v 1.28 2018/08/19 20:15:30 tb Exp $ */
+/* $OpenBSD: rsa_oaep.c,v 1.29 2018/08/19 20:17:20 tb Exp $ */
/* Written by Ulf Moeller. This software is distributed on an "AS IS"
basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. */
@@ -223,7 +223,7 @@ PKCS1_MGF1(unsigned char *mask, long len, const unsigned char *seed,
}
}
rv = 0;
-err:
+ err:
EVP_MD_CTX_cleanup(&c);
return rv;
}