From feaebc537779a6ded438930344b10965de927c04 Mon Sep 17 00:00:00 2001 From: Andrzej Kurek Date: Thu, 16 Jul 2020 04:37:41 -0400 Subject: [PATCH] x509.c: Remove one unnecessary cast Signed-off-by: Andrzej Kurek --- library/x509.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/x509.c b/library/x509.c index 1579c1abc..2a7be329b 100644 --- a/library/x509.c +++ b/library/x509.c @@ -154,7 +154,7 @@ static int x509_get_hash_alg( const mbedtls_x509_buf *alg, mbedtls_md_type_t *md return( MBEDTLS_ERR_X509_INVALID_ALG + MBEDTLS_ERR_ASN1_UNEXPECTED_TAG ); - p = (unsigned char *) alg->p; + p = alg->p; end = p + alg->len; if( p >= end )