fix: sprintf release build report buffer too small

This commit is contained in:
Alex Duan 2024-03-15 14:24:40 +08:00
parent 5ff836db24
commit a25942878d
1 changed files with 1 additions and 1 deletions

View File

@ -1368,7 +1368,7 @@ int32_t shellExecute() {
#ifdef WEBSOCKET
if (!shell.args.restful && !shell.args.cloud) {
#endif
char buf[512] = "";
char buf[2048] = "";
bool community = shellGetGrantInfo(buf);
#ifndef WINDOWS
printfIntroduction(community);