以下のように使用しlibjosn-c
ていますが、セグメンテーション違反エラーが発生します。
行を削除するとjson_object_object_add(root, "Child", value);
、エラーは発生しません。
int main(int argc, char **argv)
{
json_object *root = NULL, *value = NULL;
root = json_object_new_string("My Object");
value = json_object_new_string("My Child Object");
json_object_object_add(root, "Child", value);
printf("to string =%s\n", json_object_to_json_string(root));
json_object_put(value);
json_object_put(root);
return 0;
}
私は経験がありませんlibjson-c
。ご協力いただきありがとうございます!