commit | 6f4e030166ab27764f9217c56c298e83b93d141d | [log] [tgz] |
---|---|---|
author | Teppo Järvelin <teppo.jarvelin@arm.com> | Fri Oct 04 13:53:53 2019 +0300 |
committer | Teppo Järvelin <teppo.jarvelin@arm.com> | Wed Oct 30 14:07:04 2019 +0200 |
tree | 0afbcef23a80ad76981c616307ba9b7788abbc70 | |
parent | b5c4671a80ddef83d3ef07493bea975efa3495f6 [diff] [blame] |
Changed mbedtls_platform_memcpy to memcpy in places which don't handle critical data and under baremetal define
diff --git a/library/platform_util.c b/library/platform_util.c index 6d3c9ef..db46fe9 100644 --- a/library/platform_util.c +++ b/library/platform_util.c
@@ -211,7 +211,7 @@ if( lt != NULL ) { - mbedtls_platform_memcpy( tm_buf, lt, sizeof( struct tm ) ); + memcpy( tm_buf, lt, sizeof( struct tm ) ); } #if defined(MBEDTLS_THREADING_C)