You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by varValueToJsonString when reading STRINGs or WSTRINGs that size is greater than remaining stack size. Note it does not depend on the length of the STRING.
Located in jsonAux.c
// Stringify - Do not use variable.value. It is limited to 120 characters, which is not enough// for strings.// TODO: This can cause a stack overflow if variable.length is very large.// Maybe add a max sizeSTRINGtempString[pVariable->length+50];
The text was updated successfully, but these errors were encountered:
This is caused by
varValueToJsonString
when reading STRINGs or WSTRINGs that size is greater than remaining stack size. Note it does not depend on the length of the STRING.Located in
jsonAux.c
The text was updated successfully, but these errors were encountered: