From 610be5330f404aaf6da98c7858dd0839a755aa02 Mon Sep 17 00:00:00 2001 From: Alexey Lapshin Date: Wed, 3 Jun 2026 16:53:36 +0700 Subject: [PATCH] fix(esp_tee): fix buffer overflow --- .../subproject/components/tee_sec_storage/tee_sec_storage.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_tee/subproject/components/tee_sec_storage/tee_sec_storage.c b/components/esp_tee/subproject/components/tee_sec_storage/tee_sec_storage.c index 4820a28eb92..7704ad1663d 100644 --- a/components/esp_tee/subproject/components/tee_sec_storage/tee_sec_storage.c +++ b/components/esp_tee/subproject/components/tee_sec_storage/tee_sec_storage.c @@ -100,7 +100,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);