kopia lustrzana https://github.com/espressif/esp-idf
fix(mbedtls): fix gcc 13.1.0 warnings
rodzic
98199d50d6
commit
71713bcdb5
|
@ -333,7 +333,7 @@ static int esp_aes_process_dma(esp_aes_context *ctx, const unsigned char *input,
|
||||||
lldesc_t *in_desc_head = NULL, *out_desc_head = NULL;
|
lldesc_t *in_desc_head = NULL, *out_desc_head = NULL;
|
||||||
lldesc_t *out_desc_tail = NULL; /* pointer to the final output descriptor */
|
lldesc_t *out_desc_tail = NULL; /* pointer to the final output descriptor */
|
||||||
lldesc_t *block_desc = NULL, *block_in_desc = NULL, *block_out_desc = NULL;
|
lldesc_t *block_desc = NULL, *block_in_desc = NULL, *block_out_desc = NULL;
|
||||||
size_t lldesc_num;
|
size_t lldesc_num = 0;
|
||||||
unsigned stream_bytes = len % AES_BLOCK_BYTES; // bytes which aren't in a full block
|
unsigned stream_bytes = len % AES_BLOCK_BYTES; // bytes which aren't in a full block
|
||||||
unsigned block_bytes = len - stream_bytes; // bytes which are in a full block
|
unsigned block_bytes = len - stream_bytes; // bytes which are in a full block
|
||||||
unsigned blocks = (block_bytes / AES_BLOCK_BYTES) + ((stream_bytes > 0) ? 1 : 0);
|
unsigned blocks = (block_bytes / AES_BLOCK_BYTES) + ((stream_bytes > 0) ? 1 : 0);
|
||||||
|
|
|
@ -251,7 +251,7 @@ static esp_err_t esp_sha_dma_process(esp_sha_type sha_type, const void *input, u
|
||||||
const void *buf, uint32_t buf_len, bool is_first_block)
|
const void *buf, uint32_t buf_len, bool is_first_block)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
lldesc_t *dma_descr_head;
|
lldesc_t *dma_descr_head = NULL;
|
||||||
size_t num_blks = (ilen + buf_len) / block_length(sha_type);
|
size_t num_blks = (ilen + buf_len) / block_length(sha_type);
|
||||||
|
|
||||||
memset(&s_dma_descr_input, 0, sizeof(lldesc_t));
|
memset(&s_dma_descr_input, 0, sizeof(lldesc_t));
|
||||||
|
|
Ładowanie…
Reference in New Issue