We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1b6fdc commit a2531b5Copy full SHA for a2531b5
features/cryptocell/FEATURE_CRYPTOCELL310/trng.c
@@ -25,7 +25,7 @@
25
#include "mbedtls/platform.h"
26
27
extern mbedtls_platform_context ctx;
28
-static CRYS_RND_WorkBuff_t rndWorkBuff;
+static CRYS_RND_WorkBuff_t rndWorkBuff = { { 0 } };
29
30
/* Implementation that should never be optimized out by the compiler */
31
static void mbedtls_zeroize( void *v, size_t n ) {
features/mbedtls/platform/src/platform_alt.c
@@ -22,7 +22,7 @@
22
#if defined(MBEDTLS_PLATFORM_SETUP_TEARDOWN_ALT)
23
#include "mbed_critical.h"
24
-mbedtls_platform_context ctx = { };
+mbedtls_platform_context ctx = { { 0 } };
int mbedtls_platform_setup( mbedtls_platform_context *unused_ctx )
{
0 commit comments