Remove VTOY_HELP_TXT_LANGUAGE option from Global Control Plugin.

This commit is contained in:
longpanda
2022-12-03 14:33:52 +08:00
parent c896c03efe
commit 194e948cb6
13 changed files with 121 additions and 108 deletions

View File

@@ -425,7 +425,7 @@ int vtoy_json_parse(VTOY_JSON *pstJson, const char *szJsonData)
char *pcNewBuf = NULL;
const char *pcEnd = NULL;
uiMemSize = strlen(szJsonData) + 1;
uiMemSize = (uint32_t)strlen(szJsonData) + 1;
pcNewBuf = (char *)malloc(uiMemSize);
if (NULL == pcNewBuf)
{