fix: sprintf release build report buffer too small
This commit is contained in:
parent
5ff836db24
commit
a25942878d
|
@ -1368,7 +1368,7 @@ int32_t shellExecute() {
|
||||||
#ifdef WEBSOCKET
|
#ifdef WEBSOCKET
|
||||||
if (!shell.args.restful && !shell.args.cloud) {
|
if (!shell.args.restful && !shell.args.cloud) {
|
||||||
#endif
|
#endif
|
||||||
char buf[512] = "";
|
char buf[2048] = "";
|
||||||
bool community = shellGetGrantInfo(buf);
|
bool community = shellGetGrantInfo(buf);
|
||||||
#ifndef WINDOWS
|
#ifndef WINDOWS
|
||||||
printfIntroduction(community);
|
printfIntroduction(community);
|
||||||
|
|
Loading…
Reference in New Issue