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
When getting a string field from json, the result string contains a null char at the end of the string (this is in addition to the usual null terminator).
As a result, if you try to append two string field obtained from json, you will get: "string1\0string2\0"
This breaks many UI functions as they generally stop at the first \0.
The text was updated successfully, but these errors were encountered:
When getting a string field from json, the result string contains a null char at the end of the string (this is in addition to the usual null terminator).
As a result, if you try to append two string field obtained from json, you will get: "string1\0string2\0"
This breaks many UI functions as they generally stop at the first \0.
The text was updated successfully, but these errors were encountered: