mirror of
https://github.com/espressif/esp-idf.git
synced 2026-09-22 13:01:16 +03:00
fix(esp_tee): fix buffer overflow
This commit is contained in:
@@ -101,7 +101,7 @@ static int buffer_hexdump(const char *label, const void *buffer, size_t length)
|
||||
|
||||
const uint8_t *bytes = (const uint8_t *)buffer;
|
||||
const size_t max_bytes_per_line = 16;
|
||||
char hexbuf[max_bytes_per_line * 3];
|
||||
char hexbuf[max_bytes_per_line * 3 + 2];
|
||||
|
||||
ESP_LOGD(TAG, "%s -", label);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user