Increase size of recordName in FrameInfoTemp from 100 to 500

issue:https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I7KMM9

Signed-off-by: Chongwei Su <suchongwei@huawei.com>
This commit is contained in:
Chongwei Su 2023-07-12 15:37:43 +08:00
parent 4481572e7a
commit 67d58765eb

View File

@ -61,7 +61,7 @@ struct NodeKey {
struct FrameInfoTemp {
char codeType[20] = {0}; // 20:the maximum size of the codeType
char functionName[100] = {0}; // 100:the maximum size of the functionName
char recordName[100] = {0}; // 100:the maximum size of the recordName
char recordName[500] = {0}; // 500:the maximum size of the recordName
int columnNumber = -1;
int lineNumber = -1;
int scriptId = 0;