From e254f399256c746b0c82d62475b580d27d4fbbb9 Mon Sep 17 00:00:00 2001 From: Jason P Date: Wed, 10 Dec 2025 15:45:32 -0600 Subject: [PATCH] Set nodeName to maximum size --- src/graphics/draw/NodeListRenderer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/graphics/draw/NodeListRenderer.cpp b/src/graphics/draw/NodeListRenderer.cpp index b073f17b3..d6446ce75 100644 --- a/src/graphics/draw/NodeListRenderer.cpp +++ b/src/graphics/draw/NodeListRenderer.cpp @@ -55,7 +55,7 @@ static int scrollIndex = 0; const char *getSafeNodeName(OLEDDisplay *display, meshtastic_NodeInfoLite *node) { - static char nodeName[16]; // single static buffer we return + static char nodeName[25]; // single static buffer we return nodeName[0] = '\0'; auto writeFallbackId = [&] {