Remove unused variable warning in on-demand X.509 parsing

This commit is contained in:
Hanno Becker 2019-06-07 17:49:11 +01:00
parent 7c5fbbeec0
commit 60785d113b

View file

@ -868,6 +868,12 @@ static inline int mbedtls_x509_crt_frame_release( mbedtls_x509_crt const *crt )
#if defined(MBEDTLS_X509_ALWAYS_FLUSH) #if defined(MBEDTLS_X509_ALWAYS_FLUSH)
(void) mbedtls_x509_crt_flush_cache_frame( crt ); (void) mbedtls_x509_crt_flush_cache_frame( crt );
#endif /* MBEDTLS_X509_ALWAYS_FLUSH */ #endif /* MBEDTLS_X509_ALWAYS_FLUSH */
#if !defined(MBEDTLS_X509_ALWAYS_FLUSH) && \
!defined(MBEDTLS_THREADING_C)
((void) crt);
#endif
return( 0 ); return( 0 );
} }
@ -951,6 +957,11 @@ static inline int mbedtls_x509_crt_pk_release( mbedtls_x509_crt const *crt )
(void) mbedtls_x509_crt_flush_cache_pk( crt ); (void) mbedtls_x509_crt_flush_cache_pk( crt );
#endif /* MBEDTLS_X509_ALWAYS_FLUSH */ #endif /* MBEDTLS_X509_ALWAYS_FLUSH */
#if !defined(MBEDTLS_X509_ALWAYS_FLUSH) && \
!defined(MBEDTLS_THREADING_C)
((void) crt);
#endif
return( 0 ); return( 0 );
} }