Commit 42d1a163 authored by Ned Konz's avatar Ned Konz Committed by Damien George

stm32/mbedtls: Fix compile warning about uninitialized val.

parent a0cd18c1
......@@ -80,7 +80,7 @@ void m_free_mbedtls(void *ptr_in) {
}
int mbedtls_hardware_poll(void *data, unsigned char *output, size_t len, size_t *olen) {
uint32_t val;
uint32_t val = 0;
int n = 0;
*olen = len;
while (len--) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment