为什么我得到 free():在 tcache 2 中检测到双重释放并中止(核心转储)*

Why do I get free(): double free detected in tcache 2 and aborted (core dumped)*

我正在编写代码来获取每一代的血型。它有一个功能,可以释放这个人和他的祖先,但我遇到了这两个错误: free():在 tcache 2 中检测到双重释放; 已中止(核心已转储)。 下面是释放家庭的代码。任何建议将不胜感激!

void free_family(person *p)
{
    // Handle base case: input of NULL
    for (int i = 0; i < 2; i++)
    {
        // do not free NULL pointer
        if (p == NULL)
        {
            continue;
        }
        person *cursor = p -> parents[i];
        person *tmp = cursor;
        while (cursor != NULL)
        {
            //Free parents
            cursor = cursor -> parents[i];
            free(tmp);
            tmp = cursor;
        }
        // Free child
        free(cursor);
        free(p);
    }
}

我还没有检查你所有的代码,但是:

你的循环迭代了两次。每次,它都会调用 free(p),这在迭代之间不会改变。

可能的解决方法是将调用移到循环之外。