fix(esp_tee): fix buffer overflow

This commit is contained in:
Alexey Lapshin
2026-06-03 16:53:36 +07:00
parent a0688c6e32
commit 79cb80979f

View File

@@ -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);