十年网站开发经验 + 多家企业客户 + 靠谱的建站团队
量身定制 + 运营维护+专业推广+无忧售后,网站问题一站解决
cJSON* LinkJson(cJSON* root1, cJSON* root2)
{
if (root1 == NULL || root2 == NULL)
return NULL;
cJSON* res_root = cJSON_CreateObject();
cJSON* item1 = root1->child;
cJSON* item2 = root2->child;
auto AddItemToObject = [&log](cJSON* root, cJSON* item)
{
switch (item->type)
{
case cJSON_Number:
if (item->valuedouble != 0)
cJSON_AddNumberToObject(root, item->string, item->valuedouble);
else
cJSON_AddNumberToObject(root, item->string, item->valueint);
break;
case cJSON_String:
cJSON_AddStringToObject(root, item->string, item->valuestring);
break;
case cJSON_Object:
cJSON_AddItemToObject(root, item->string, item);
break;
default:
break;
}
};
while (item1)
{
cJSON* next = item1->next;
AddItemToObject(res_root, item1);
item1 = next;
}
while (item2)
{
cJSON* next = item2->next;
AddItemToObject(res_root, item2);
item2 = next;
}
return res_root;
}
int main()
{
string timestamp = "2022-11-28 16:10:35.767";
cJSON* root1 = cJSON_CreateObject();
{
cJSON* item1 = GenerateJsonItem(root1, 500, "", timestamp, "Signalname_0", "0:0", "M0A0");
cJSON* item2 = GenerateJsonItem(root1, 500, "", timestamp, "Signalname_1", "0:1", "M0A1");
printf("item1: \n%s\n\n", cJSON_Print(item1));
printf("item2: \n%s\n\n", cJSON_Print(item2));
printf("root1: \n%s\n\n", cJSON_Print(root1));
cJSON_Delete(item1);
cJSON_Delete(root1);
cJSON_Delete(item2);
}
}
cJSON* GenerateJsonItem(cJSON* root, int value, string unit, string timestamp, string name, string address, string identifier)
{
cJSON* Signal = cJSON_CreateObject();
cJSON_AddNumberToObject(Signal, "Value", value);
cJSON_AddStringToObject(Signal, "Unit", unit.c_str());
cJSON_AddStringToObject(Signal, "Timestamp", timestamp.c_str());
cJSON_AddStringToObject(Signal, "Name", name.c_str());
cJSON_AddStringToObject(Signal, "Address", address.c_str());
cJSON_AddStringToObject(Signal, "Identifier", identifier.c_str());
if (root != nullptr)
cJSON_AddItemToObject(root, identifier.c_str(), Signal);
return Signal;
}
创建了两个 cjson “对象” item1 与 item2 ,然后都插入 cjson “对象” root1 ,在调用cJSON_Delete(item1);
之后调用cJSON_Delete(root1);
或是cJSON_Delete(root1);
都会导致程序崩溃。
调用cJSON_Delete(item1)
之后,item1 的参数全部失效,但自身的值还未置空。
之后调用cJSON_Delete(root1)
,进入 while 循环,检测到 root1 的 child 指针指向 item1 “对象”,第一个 if 条件触发,进入1层嵌套,相当于再次调用了cJSON_Delete(item1)
。
在 Debug 模式下,item1 的 child 指针的值被设为 0xfeeefeee ,非空,再次触发第一个 if 条件,,进入2层嵌套,相当于调用cJSON_Delete(0xfeeefeee)
。
第二层嵌套中尝试从 0xfeeefeee 获取 next 指针触发程序断点。
cJSON_Delete()
会删除一个节点的所有兄弟结点和以它们为根的子树。可能还存在其他节点的指针指向被删除节点,所以应尽可能谨慎使用cJSON_Delete()
。cJSON_Delete()
你是否还在寻找稳定的海外服务器提供商?创新互联www.cdcxhl.cn海外机房具备T级流量清洗系统配攻击溯源,准确流量调度确保服务器高可用性,企业级服务器适合批量采购,新人活动首月15元起,快前往官网查看详情吧