aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ts/ts_verify_ctx.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/ts/ts_verify_ctx.c')
-rw-r--r--crypto/ts/ts_verify_ctx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/ts/ts_verify_ctx.c b/crypto/ts/ts_verify_ctx.c
index 3e6fcb57be..f328c33053 100644
--- a/crypto/ts/ts_verify_ctx.c
+++ b/crypto/ts/ts_verify_ctx.c
@@ -63,8 +63,8 @@
TS_VERIFY_CTX *TS_VERIFY_CTX_new(void)
{
- TS_VERIFY_CTX *ctx =
- (TS_VERIFY_CTX *)OPENSSL_malloc(sizeof(TS_VERIFY_CTX));
+ TS_VERIFY_CTX *ctx = OPENSSL_malloc(sizeof(TS_VERIFY_CTX));
+
if (ctx)
memset(ctx, 0, sizeof(TS_VERIFY_CTX));
else